<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/yoshiumi41/">
    <title>KSネットワーク - Now Editing... @ wiki</title>
    <link>http://w.atwiki.jp/yoshiumi41/</link>
    <atom:link href="https://w.atwiki.jp/yoshiumi41/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>KSネットワーク - Now Editing... @ wiki</description>

    <dc:language>ja</dc:language>
    <dc:date>2013-08-02T09:00:10+09:00</dc:date>
    <utime>1375401610</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/yoshiumi41/pages/104.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/yoshiumi41/pages/103.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/yoshiumi41/pages/102.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/yoshiumi41/pages/101.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/yoshiumi41/pages/100.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/yoshiumi41/pages/99.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/yoshiumi41/pages/98.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/yoshiumi41/pages/97.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/yoshiumi41/pages/96.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/yoshiumi41/pages/95.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/yoshiumi41/pages/104.html">
    <title>ouchi/Android</title>
    <link>https://w.atwiki.jp/yoshiumi41/pages/104.html</link>
    <description>
      #ls3()    </description>
    <dc:date>2013-08-02T09:00:10+09:00</dc:date>
    <utime>1375401610</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/yoshiumi41/pages/103.html">
    <title>KS5/Android/10_strings.xml</title>
    <link>https://w.atwiki.jp/yoshiumi41/pages/103.html</link>
    <description>
      &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;resources&gt;

    &lt;string name=&quot;app_name&quot;&gt;10_IntentSample2&lt;/string&gt;
    &lt;string name=&quot;action_settings&quot;&gt;Settings&lt;/string&gt;
    &lt;string name=&quot;hello_world&quot;&gt;Hello world!&lt;/string&gt;
    
    &lt;string name=&quot;tv_inputname&quot;&gt;お名前を入力してください。&lt;/string&gt;
    &lt;string name=&quot;bt_next&quot;&gt;次の画面を表示&lt;/string&gt;
    &lt;string name=&quot;tv_selectgreeting&quot;&gt;あいさつを選択してください。&lt;/string&gt;
    &lt;string name=&quot;bt_back&quot;&gt;前の画面に戻る&lt;/string&gt;
    
    &lt;string-array name=&quot;sp_greeting&quot;&gt;
		&lt;item&gt;おはよう！&lt;/item&gt;
		&lt;item&gt;こんにちは！&lt;/item&gt;
		&lt;item&gt;こんばんは！&lt;/item&gt;
	&lt;/string-array&gt;

&lt;/resources&gt;    </description>
    <dc:date>2013-07-29T17:18:51+09:00</dc:date>
    <utime>1375085931</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/yoshiumi41/pages/102.html">
    <title>KS5/Android/10_secondlayout.xml</title>
    <link>https://w.atwiki.jp/yoshiumi41/pages/102.html</link>
    <description>
      &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;LinearLayout
	xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;	
	android:layout_width=&quot;match_parent&quot;
	android:layout_height=&quot;match_parent&quot;
	android:orientation=&quot;vertical&quot;&gt;

	&lt;TextView
		android:layout_width=&quot;match_parent&quot;
		android:layout_height=&quot;wrap_content&quot;
		android:background=&quot;#0000ff&quot;
		android:textColor=&quot;#ffffff&quot;
		android:text=&quot;@string/tv_selectgreeting&quot;/&gt;

	&lt;Spinner 
	    android:id=&quot;@+id/sp_greeting&quot;
		android:layout_width=&quot;match_parent&quot;
		android:layout_height=&quot;wrap_content&quot;
		android:entries=&quot;@array/sp_greeting&quot; /&gt;

	&lt;Button 
		android:id=&quot;@+id/bt_back&quot;
		android:layout_width=&quot;wrap_content&quot;
		android:layout_height=&quot;wrap_content&quot;
		android:text=&quot;@string/bt_back&quot;/&gt;

&lt;/LinearLayout&gt;    </description>
    <dc:date>2013-07-29T17:18:08+09:00</dc:date>
    <utime>1375085888</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/yoshiumi41/pages/101.html">
    <title>KS5/Android/10_activity_main.xml</title>
    <link>https://w.atwiki.jp/yoshiumi41/pages/101.html</link>
    <description>
      &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;LinearLayout
	xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;
	android:layout_width=&quot;match_parent&quot;
	android:layout_height=&quot;match_parent&quot;
	android:orientation=&quot;vertical&quot;&gt;

	&lt;TextView
		android:layout_width=&quot;match_parent&quot;
		android:layout_height=&quot;wrap_content&quot;
		android:background=&quot;#00ff00&quot;
		android:text=&quot;@string/tv_inputname&quot;/&gt;

	&lt;EditText 
	    android:id=&quot;@+id/et_name&quot;
		android:layout_width=&quot;match_parent&quot;
		android:layout_height=&quot;wrap_content&quot;
		android:inputType=&quot;text&quot;/&gt;

	&lt;Button 
		android:id=&quot;@+id/bt_next&quot;
		android:layout_width=&quot;wrap_content&quot;
		android:layout_height=&quot;wrap_content&quot;
		android:text=&quot;@string/bt_next&quot;/&gt;

&lt;/LinearLayout&gt;    </description>
    <dc:date>2013-07-29T17:17:38+09:00</dc:date>
    <utime>1375085858</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/yoshiumi41/pages/100.html">
    <title>KS5/Android/09_strings.xml</title>
    <link>https://w.atwiki.jp/yoshiumi41/pages/100.html</link>
    <description>
      &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;resources&gt;

    &lt;string name=&quot;app_name&quot;&gt;09_IntentSample1&lt;/string&gt;
    &lt;string name=&quot;action_settings&quot;&gt;Settings&lt;/string&gt;
    &lt;string name=&quot;hello_world&quot;&gt;Hello world!&lt;/string&gt;
    
    &lt;string name=&quot;iv_fruit&quot;&gt;果物の画像&lt;/string&gt;
    &lt;string name=&quot;bt_back&quot;&gt;前の画面に戻る&lt;/string&gt;
    
    &lt;string-array name=&quot;lv_fruit&quot;&gt;
		&lt;item&gt;Apple&lt;/item&gt;
		&lt;item&gt;Berry&lt;/item&gt;
		&lt;item&gt;Grape&lt;/item&gt;
	&lt;/string-array&gt;

&lt;/resources&gt;    </description>
    <dc:date>2013-07-29T17:15:42+09:00</dc:date>
    <utime>1375085742</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/yoshiumi41/pages/99.html">
    <title>KS5/Android/09_secondlayout.xml</title>
    <link>https://w.atwiki.jp/yoshiumi41/pages/99.html</link>
    <description>
      &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;LinearLayout
	xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;
	android:layout_width=&quot;match_parent&quot;
	android:layout_height=&quot;match_parent&quot;
	android:orientation=&quot;vertical&quot;&gt;

	&lt;ImageView
		android:id=&quot;@+id/iv_fruit&quot;
		android:layout_width=&quot;wrap_content&quot;
		android:layout_height=&quot;wrap_content&quot;
		android:layout_marginTop=&quot;10dp&quot;
		android:layout_gravity=&quot;center_horizontal&quot;
		android:contentDescription=&quot;@string/iv_fruit&quot; /&gt;

	&lt;Button 
		android:id=&quot;@+id/bt_back&quot;
		android:layout_width=&quot;180dp&quot;
		android:layout_height=&quot;wrap_content&quot;
 		android:layout_marginTop=&quot;10dp&quot;
		android:layout_gravity=&quot;center_horizontal&quot;
		android:text=&quot;@string/bt_back&quot;/&gt;

&lt;/LinearLayout&gt;    </description>
    <dc:date>2013-07-29T17:15:08+09:00</dc:date>
    <utime>1375085708</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/yoshiumi41/pages/98.html">
    <title>KS/Android/09_activity_main.xml</title>
    <link>https://w.atwiki.jp/yoshiumi41/pages/98.html</link>
    <description>
      &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;ListView
	xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;
	android:id=&quot;@+id/lv_fruit&quot;
	android:layout_width=&quot;match_parent&quot;
	android:layout_height=&quot;match_parent&quot;
	android:entries=&quot;@array/lv_fruit&quot;&gt;
&lt;/ListView&gt;    </description>
    <dc:date>2013-07-29T17:14:16+09:00</dc:date>
    <utime>1375085656</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/yoshiumi41/pages/97.html">
    <title>KS/Android/08</title>
    <link>https://w.atwiki.jp/yoshiumi41/pages/97.html</link>
    <description>
      package jp.co.keyware.activemondai2;


import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemSelectedListener;
import android.widget.EditText;
import android.widget.Spinner;
import android.widget.Toast;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        
        Spinner spinner = (Spinner) findViewById(R.id.say);
        spinner.setOnItemSelectedListener(new SpinnerOnItemSelectedListener());
    }
        class SpinnerOnItemSelectedListener implements OnItemSelectedListener {

			public void onItemSelected(AdapterView&lt;?&gt; parent, View view,
					int position, long id) {
				Spinner spinner = (Spinner) parent;
				String item = (String) spinner.getSelectedItem();
				Ed    </description>
    <dc:date>2013-07-28T16:33:57+09:00</dc:date>
    <utime>1374996837</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/yoshiumi41/pages/96.html">
    <title>KS/Android/03_xml</title>
    <link>https://w.atwiki.jp/yoshiumi41/pages/96.html</link>
    <description>
      &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;resources&gt;

    &lt;string name=&quot;app_name&quot;&gt;03_LayoutViewMondai&lt;/string&gt;
    &lt;string name=&quot;action_settings&quot;&gt;Settings&lt;/string&gt;
    &lt;string name=&quot;tv_title&quot;&gt;お申込みフォーム&lt;/string&gt;
    &lt;string name=&quot;tv_name&quot;&gt;お名前：&lt;/string&gt;
    &lt;string name=&quot;tv_address&quot;&gt;住所：&lt;/string&gt;
    &lt;string name=&quot;tv_birthday&quot;&gt;生年月日：&lt;/string&gt;
    &lt;string name=&quot;tv_month&quot;&gt;月&lt;/string&gt;
    &lt;string name=&quot;tv_day&quot;&gt;日&lt;/string&gt;
    &lt;string name=&quot;tv_sex&quot;&gt;性別&lt;/string&gt;
    &lt;string name=&quot;tv_man&quot;&gt;男&lt;/string&gt;
    &lt;string name=&quot;tv_woman&quot;&gt;女&lt;/string&gt;
    &lt;string name=&quot;tv_item&quot;&gt;希望商品&lt;/string&gt;
    &lt;string name=&quot;tv_number&quot;&gt;注文数量&lt;/string&gt;
    &lt;string name=&quot;apple&quot;&gt;りんご&lt;/string&gt;
    &lt;string name=&quot;orange&quot;&gt;みかん&lt;/string&gt;
    &lt;string name=&quot;peach&quot;&gt;もも&lt;/string&gt;
    &lt;string name=&quot;send&quot;&gt;送信&lt;/string&gt;

    &lt;string-array name=&quot;month&quot;&gt;
        &lt;item&gt;1&lt;/item&gt;
        &lt;item&gt;2&lt;/item&gt;
        &lt;item&gt;3&lt;/item&gt;
        &lt;item&gt;4&lt;/item&gt;
        &lt;item&gt;5&lt;/item&gt;
        &lt;item&gt;6&lt;/item&gt;
        &lt;item&gt;7&lt;/item&gt;
        &lt;item&gt;8    </description>
    <dc:date>2013-07-25T21:25:56+09:00</dc:date>
    <utime>1374755156</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/yoshiumi41/pages/95.html">
    <title>KS/Android/03_main</title>
    <link>https://w.atwiki.jp/yoshiumi41/pages/95.html</link>
    <description>
      &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;LinearLayout xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;
    android:layout_width=&quot;match_parent&quot;
    android:layout_height=&quot;match_parent&quot;
    android:orientation=&quot;vertical&quot; &gt;

    &lt;TextView
        android:layout_width=&quot;match_parent&quot;
        android:layout_height=&quot;wrap_content&quot;
        android:text=&quot;@string/tv_title&quot;
        android:textSize=&quot;24.0sp&quot; /&gt;

    &lt;LinearLayout
        android:layout_width=&quot;match_parent&quot;
        android:layout_height=&quot;wrap_content&quot;
        android:orientation=&quot;horizontal&quot; &gt;

        &lt;TextView
            android:layout_width=&quot;70dp&quot;
            android:layout_height=&quot;wrap_content&quot;
            android:text=&quot;@string/tv_name&quot; /&gt;

        &lt;EditText
            android:layout_width=&quot;200dp&quot;
            android:layout_height=&quot;wrap_content&quot;
            android:inputType=&quot;text&quot; /&gt;
    &lt;/LinearLayout&gt;

    &lt;LinearLayout
        android:layout_width=&quot;match_parent&quot;
        android:layout    </description>
    <dc:date>2013-07-25T21:24:53+09:00</dc:date>
    <utime>1374755093</utime>
  </item>
  </rdf:RDF>
