<?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/intern20160210/">
    <title>intern20160210 @ ウィキ</title>
    <link>http://w.atwiki.jp/intern20160210/</link>
    <atom:link href="https://w.atwiki.jp/intern20160210/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>intern20160210 @ ウィキ</description>

    <dc:language>ja</dc:language>
    <dc:date>2016-02-11T23:30:24+09:00</dc:date>
    <utime>1455201024</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/intern20160210/pages/1.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/intern20160210/pages/11.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/intern20160210/pages/10.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/intern20160210/pages/9.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/intern20160210/pages/8.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/intern20160210/pages/7.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/intern20160210/pages/6.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/intern20160210/pages/5.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/intern20160210/pages/4.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/intern20160210/pages/3.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/intern20160210/pages/1.html">
    <title>トップページ</title>
    <link>https://w.atwiki.jp/intern20160210/pages/1.html</link>
    <description>
      #image(http://img.atwikiimg.com/www65.atwiki.jp/intern20160210/attach/1/2/toru.png)
#image(http://img.atwikiimg.com/www65.atwiki.jp/intern20160210/attach/1/1/erabu.png)

#image(http://img.atwikiimg.com/www65.atwiki.jp/intern20160210/attach/1/3/nexus5.png)



&amp;italic(){ボタンによって画面を切り替えるAndroidプログラム
最後の中かっこないのに注意！！
参考：http://hakoniwadesign.com/?p=7868

レイアウトにレイアウトを重ねる
http://techacademy.jp/magazine/4455

画像を重ねて表示　framworkレイアウト？
http://araking0.blog.fc2.com/blog-entry-16.html



&lt;RelativeLayout xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;
    xmlns:tools=&quot;http://schemas.android.com/tools&quot;
    android:layout_width=&quot;match_parent&quot;
    android:layout_height=&quot;match_parent&quot;
    android:paddingBottom=&quot;@dimen/activity_vertical_margin&quot;
    android:paddingLeft=&quot;@dimen/activity_horizontal_margin&quot;
    android:paddingRight=&quot;@dimen/activity_horizontal_margin&quot;
    android:paddingTop=&quot;@dimen/activity_vertical_margin&quot;
    tools:context=&quot;com.example.test.MainActivity&quot; &gt;

    &lt;Button
        android:id=&quot;@+id/button1&quot;
        android:layout_width=&quot;wrap_content&quot;
        android:layout_height=&quot;wrap_content&quot;
        android:layout_alignLeft=&quot;@+id/textView1&quot;
        android:layout_below=&quot;@+id/textView1&quot;
        android:layout_marginTop=&quot;14dp&quot;
        android:text=&quot;Button&quot; 
        android:onClick=&quot;b0&quot;
        /&gt;

    &lt;Button
        android:id=&quot;@+id/button2&quot;
        android:layout_width=&quot;wrap_content&quot;
        android:layout_height=&quot;wrap_content&quot;
        android:layout_alignBaseline=&quot;@+id/button1&quot;
        android:layout_alignBottom=&quot;@+id/button1&quot;
        android:layout_centerHorizontal=&quot;true&quot;
        android:text=&quot;Button&quot; 
        android:onClick=&quot;b1&quot;
        /&gt;
    
    &lt;ImageView
        android:id=&quot;@+id/imageView1&quot;
        android:layout_width=&quot;wrap_content&quot;
        android:layout_height=&quot;wrap_content&quot;
        android:layout_below=&quot;@+id/button1&quot;
        android:layout_marginTop=&quot;86dp&quot;
        android:layout_toRightOf=&quot;@+id/textView1&quot;
        android:src=&quot;@drawable/ic_launcher&quot; 
        /&gt;
    
    &lt;ImageView
        android:id=&quot;@+id/imageView2&quot;
        android:layout_width=&quot;wrap_content&quot;
        android:layout_height=&quot;wrap_content&quot;
        android:layout_below=&quot;@+id/button1&quot;
        android:layout_marginTop=&quot;86dp&quot;
        android:layout_toRightOf=&quot;@+id/textView1&quot;
        android:src=&quot;@drawable/android&quot; 
        /&gt;
&lt;/RelativeLayout&gt;






package com.example.test;

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.Toast;

public class MainActivity extends ActionBarActivity {

	// 0mのボタン
    public void b0(View v) {
        // 画像の変更 （b0画像を設定）
    	findViewById(R.id.imageView2).setVisibility(View.INVISIBLE);
    	findViewById(R.id.imageView1).setVisibility(View.VISIBLE);
    	((ImageView) findViewById(R.id.imageView1)).setImageResource(R.drawable.ic_launcher);
    }

    // 10mのボタン
    public void b1(View v) {
        // 画像の変更 （b1画像を設定）
    	findViewById(R.id.imageView1).setVisibility(View.INVISIBLE);
    	findViewById(R.id.imageView2).setVisibility(View.VISIBLE);
        ((ImageView) findViewById(R.id.imageView2)).setImageResource(R.drawable.android);
        
    }	
	
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
    	findViewById(R.id.imageView2).setVisibility(View.INVISIBLE);
    	findViewById(R.id.imageView1).setVisibility(View.INVISIBLE);
		
//		Button button = (Button) findViewById(R.id.button1);
//        // ボタンがクリックされた時に呼び出されるコールバックリスナーを登録します
//        button.setOnClickListener(new View.OnClickListener() {
//            @Override
//            public void onClick(View v) {
//                // ボタンがクリックされた時に呼び出されます
//                Button button = (Button) v;
//                Toast.makeText(MainActivity.this, &quot;onClick()&quot;,
//                        Toast.LENGTH_SHORT).show();
//            }
//        });
	}






ボタンを増やしてレイアウトをいろいろ試してみたのはこちら
&lt;LinearLayout xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;
    xmlns:tools=&quot;http://schemas.android.com/tools&quot;
    android:id=&quot;@+id/LinearLayout1&quot;
    android:layout_width=&quot;match_parent&quot;
    android:layout_height=&quot;match_parent&quot;
    android:orientation=&quot;vertical&quot;
    android:paddingBottom=&quot;@dimen/activity_vertical_margin&quot;
    android:paddingLeft=&quot;@dimen/activity_horizontal_margin&quot;
    android:paddingRight=&quot;@dimen/activity_horizontal_margin&quot;
    android:paddingTop=&quot;@dimen/activity_vertical_margin&quot;
    tools:context=&quot;com.example.test.MainActivity&quot; &gt;

    &lt;LinearLayout
        android:layout_width=&quot;match_parent&quot;
        android:layout_height=&quot;wrap_content&quot; &gt;

        &lt;Button
            android:id=&quot;@+id/button1&quot;
            android:layout_width=&quot;wrap_content&quot;
            android:layout_height=&quot;wrap_content&quot;
            android:text=&quot;Button&quot; 
            android:onClick=&quot;b0&quot;
            /&gt;

        &lt;Button
            android:id=&quot;@+id/button2&quot;
            android:layout_width=&quot;wrap_content&quot;
            android:layout_height=&quot;wrap_content&quot;
            android:text=&quot;Button&quot; 
            android:onClick=&quot;b1&quot;
            /&gt;

        &lt;Button
            android:id=&quot;@+id/button3&quot;
            android:layout_width=&quot;wrap_content&quot;
            android:layout_height=&quot;wrap_content&quot;
            android:text=&quot;Button&quot; 
            android:onClick=&quot;b2&quot;
            /&gt;

        &lt;Button
            android:id=&quot;@+id/button4&quot;
            android:layout_width=&quot;wrap_content&quot;
            android:layout_height=&quot;wrap_content&quot;
            android:text=&quot;Button&quot; 
            android:onClick=&quot;b3&quot;
            /&gt;

    &lt;/LinearLayout&gt;

    &lt;LinearLayout
        android:layout_width=&quot;match_parent&quot;
        android:layout_height=&quot;wrap_content&quot;
        android:layout_gravity=&quot;center|fill_horizontal&quot; &gt;

        &lt;FrameLayout
            android:layout_width=&quot;fill_parent&quot;
            android:layout_height=&quot;fill_parent&quot; &gt;

            &lt;ImageView
                android:id=&quot;@+id/imageView1&quot;
                android:layout_width=&quot;fill_parent&quot;
                android:layout_height=&quot;fill_parent&quot;
                android:src=&quot;@drawable/android&quot; /&gt;

            &lt;ImageView
                android:id=&quot;@+id/imageView2&quot;
                android:layout_width=&quot;fill_parent&quot;
                android:layout_height=&quot;fill_parent&quot;
                android:src=&quot;@drawable/ic_launcher&quot; /&gt;

        &lt;/FrameLayout&gt;

    &lt;/LinearLayout&gt;

    &lt;LinearLayout
        android:layout_width=&quot;match_parent&quot;
        android:layout_height=&quot;wrap_content&quot; &gt;
    &lt;/LinearLayout&gt;

&lt;/LinearLayout&gt;




package com.example.test;

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.Toast;

public class MainActivity extends ActionBarActivity {

	// 0mのボタン
    public void b0(View v) {
        // 画像の変更 （b0画像を設定）
    	 Toast.makeText(MainActivity.this, &quot;onClick()&quot;,
               Toast.LENGTH_SHORT).show();
    	findViewById(R.id.imageView2).setVisibility(View.INVISIBLE);
    	findViewById(R.id.imageView1).setVisibility(View.VISIBLE);
    	((ImageView) findViewById(R.id.imageView1)).setImageResource(R.drawable.ic_launcher);
    }

    // 10mのボタン
    public void b1(View v) {
        // 画像の変更 （b1画像を設定）
    	findViewById(R.id.imageView1).setVisibility(View.INVISIBLE);
    	findViewById(R.id.imageView2).setVisibility(View.VISIBLE);
        ((ImageView) findViewById(R.id.imageView2)).setImageResource(R.drawable.android);
        
    }	
    
    public void b2(View v) {
        // 画像の変更 （b1画像を設定）
    	findViewById(R.id.imageView1).setVisibility(View.INVISIBLE);
    	findViewById(R.id.imageView2).setVisibility(View.VISIBLE);
        ((ImageView) findViewById(R.id.imageView2)).setImageResource(R.drawable.android);
        
    }
    public void b3(View v) {
        // 画像の変更 （b1画像を設定）
    	findViewById(R.id.imageView1).setVisibility(View.INVISIBLE);
    	findViewById(R.id.imageView2).setVisibility(View.VISIBLE);
        ((ImageView) findViewById(R.id.imageView2)).setImageResource(R.drawable.android);
        
    }
    
    
	
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
    	findViewById(R.id.imageView2).setVisibility(View.INVISIBLE);
    	findViewById(R.id.imageView1).setVisibility(View.INVISIBLE);
		
//		Button button = (Button) findViewById(R.id.button1);
//        // ボタンがクリックされた時に呼び出されるコールバックリスナーを登録します
//        button.setOnClickListener(new View.OnClickListener() {
//            @Override
//            public void onClick(View v) {
//                // ボタンがクリックされた時に呼び出されます
//                Button button = (Button) v;
//                Toast.makeText(MainActivity.this, &quot;onClick()&quot;,
//                        Toast.LENGTH_SHORT).show();
//            }
//        });
	}

	
	
	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.main, menu);
		return true;
	}

	@Override
	public boolean onOptionsItemSelected(MenuItem item) {
		// Handle action bar item clicks here. The action bar will
		// automatically handle clicks on the Home/Up button, so long
		// as you specify a parent activity in AndroidManifest.xml.
		int id = item.getItemId();
		if (id == R.id.action_settings) {
			return true;
		}
		return super.onOptionsItemSelected(item);
	}
}
}    </description>
    <dc:date>2016-02-11T23:30:24+09:00</dc:date>
    <utime>1455201024</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/intern20160210/pages/11.html">
    <title>プラグイン/インスタグラム</title>
    <link>https://w.atwiki.jp/intern20160210/pages/11.html</link>
    <description>
      *インスタグラムプラグイン

人気の画像共有サービス、Instagram(インスタグラム）の画像をアットウィキに貼れるプラグインです。


 #ig_user(ユーザー名)
 と記載することで、特定ユーザーのInstagramのフィードを表示することができます。

例）@dogoftheday
#ig_user(dogoftheday)

----

 #ig_tags(タグ名)
 と記載することで、特定タグのInstagramのフィードを表示することができます。

#dogofthedayjp タグ
#ig_tag(dogofthedayjp)

----

 #ig_popular
 と記載することで、Instagramのpopularフィードを表示することができます。



詳しい使い方は以下のページを参考にしてください！
＝＞http://www1.atwiki.jp/guide/pages/935.html

--------    </description>
    <dc:date>2016-02-10T22:28:16+09:00</dc:date>
    <utime>1455110896</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/intern20160210/pages/10.html">
    <title>プラグイン/コメント</title>
    <link>https://w.atwiki.jp/intern20160210/pages/10.html</link>
    <description>
      * コメントプラグイン
@wikiのwikiモードでは
 #comment()
と入力することでコメントフォームを簡単に作成することができます。
詳しくはこちらをご覧ください。
＝＞http://www1.atwiki.jp/guide/pages/921.html#id_476878da


-----
たとえば、#comment() と入力すると以下のように表示されます。

#comment
    </description>
    <dc:date>2016-02-10T22:28:16+09:00</dc:date>
    <utime>1455110896</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/intern20160210/pages/9.html">
    <title>プラグイン</title>
    <link>https://w.atwiki.jp/intern20160210/pages/9.html</link>
    <description>
      @wikiにはいくつかの便利なプラグインがあります。

-----


#ls

-----

これ以外のプラグインについては@wikiガイドをご覧ください
=&gt;http://atwiki.jp/guide/
    </description>
    <dc:date>2016-02-10T22:28:16+09:00</dc:date>
    <utime>1455110896</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/intern20160210/pages/8.html">
    <title>プラグイン/動画(Youtube)</title>
    <link>https://w.atwiki.jp/intern20160210/pages/8.html</link>
    <description>
      * 動画(youtube)
@wikiのwikiモードでは
 #video(動画のURL)
と入力することで、動画を貼り付けることが出来ます。
詳しくはこちらをご覧ください。
＝＞http://www1.atwiki.jp/guide/pages/801.html#id_30dcdc73

また動画のURLはYoutubeのURLをご利用ください。
＝＞http://www.youtube.com/

-----


たとえば、#video(http://youtube.com/watch?v=kTV1CcS53JQ)と入力すると以下のように表示されます。


#video(http://youtube.com/watch?v=kTV1CcS53JQ)

    </description>
    <dc:date>2016-02-10T22:28:16+09:00</dc:date>
    <utime>1455110896</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/intern20160210/pages/7.html">
    <title>プラグイン/RSS</title>
    <link>https://w.atwiki.jp/intern20160210/pages/7.html</link>
    <description>
      *RSSを取り込んで一覧表示(rss)
 #rss(ここにＲＳＳのＵＲＬ)
もしくは
 #rss(ここにＲＳＳのＵＲＬを入力)
と入力することで指定したＲＳＳを取り込んで一覧表示します。

詳しくはこちらをご覧ください。
＝＞http://www1.atwiki.jp/guide/pages/269.html#id_a0e79757

----
たとえば、#rss(http://www1.atwiki.jp/guide/rss10_new.xml) と入力すると以下のように表示されます。

#rss(http://www1.atwiki.jp/guide/rss10_new.xml)
    </description>
    <dc:date>2016-02-10T22:28:16+09:00</dc:date>
    <utime>1455110896</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/intern20160210/pages/6.html">
    <title>プラグイン/アーカイブ</title>
    <link>https://w.atwiki.jp/intern20160210/pages/6.html</link>
    <description>
      * アーカイブ
@wikiのwikiモードでは
 #archive_log()
と入力することで、特定のウェブページを保存しておくことができます。
詳しくはこちらをご覧ください。
＝＞http://www1.atwiki.jp/guide/pages/921.html#id_2d967d6e


-----


たとえば、#archive_log()と入力すると以下のように表示されます。
保存したいURLとサイト名を入力して&quot;アーカイブログ&quot;をクリックしてみよう


#archive_log()
    </description>
    <dc:date>2016-02-10T22:28:16+09:00</dc:date>
    <utime>1455110896</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/intern20160210/pages/5.html">
    <title>プラグイン/編集履歴</title>
    <link>https://w.atwiki.jp/intern20160210/pages/5.html</link>
    <description>
      * 更新履歴
@wikiのwikiモードでは
 #recent(数字)
と入力することで、wikiのページ更新履歴を表示することができます。
詳しくはこちらをご覧ください。
＝＞http://www1.atwiki.jp/guide/pages/269.html#id_bf9eaeba


-----


たとえば、#recent(20)と入力すると以下のように表示されます。


#recent(20)
    </description>
    <dc:date>2016-02-10T22:28:16+09:00</dc:date>
    <utime>1455110896</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/intern20160210/pages/4.html">
    <title>プラグイン/ニュース</title>
    <link>https://w.atwiki.jp/intern20160210/pages/4.html</link>
    <description>
      * ニュース
@wikiのwikiモードでは
 #news(興味のある単語)
と入力することで、あるキーワードに関連するニュース一覧を表示することができます
詳しくはこちらをご覧ください。
＝＞http://www1.atwiki.jp/guide/pages/266.html#id_542badf7


-----


たとえば、#news(ゲーム)と入力すると以下のように表示されます。


#news(ゲーム)
    </description>
    <dc:date>2016-02-10T22:28:16+09:00</dc:date>
    <utime>1455110896</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/intern20160210/pages/3.html">
    <title>右メニュー</title>
    <link>https://w.atwiki.jp/intern20160210/pages/3.html</link>
    <description>
      **更新履歴
#recent(20)


&amp;link_editmenu2(text=ここを編集)
    </description>
    <dc:date>2016-02-10T22:28:16+09:00</dc:date>
    <utime>1455110896</utime>
  </item>
  </rdf:RDF>
