<?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/andro_degu/">
    <title>Do &amp;quot;Java &amp;amp; Android&amp;quot; Dream of Electric Degu?</title>
    <link>http://w.atwiki.jp/andro_degu/</link>
    <atom:link href="https://w.atwiki.jp/andro_degu/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>Do &amp;quot;Java &amp;amp; Android&amp;quot; Dream of Electric Degu?</description>

    <dc:language>ja</dc:language>
    <dc:date>2011-02-16T22:49:10+09:00</dc:date>
    <utime>1297864150</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/andro_degu/pages/20.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/andro_degu/pages/19.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/andro_degu/pages/1.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/andro_degu/pages/2.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/andro_degu/pages/18.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/andro_degu/pages/16.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/andro_degu/pages/15.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/andro_degu/pages/14.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/andro_degu/pages/13.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/andro_degu/pages/5.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/andro_degu/pages/20.html">
    <title>Const</title>
    <link>https://w.atwiki.jp/andro_degu/pages/20.html</link>
    <description>
      #html2(){{{
 &lt;table border=1 bgcolor=&quot;#808080&quot; cellspacing=1 cellpadding=0&gt;

&lt;tr&gt;&lt;td&gt;あああ&lt;/td&gt;
&lt;td&gt;ｂｂｂ&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
}}}    </description>
    <dc:date>2011-02-16T22:49:10+09:00</dc:date>
    <utime>1297864150</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/andro_degu/pages/19.html">
    <title>TextView設定</title>
    <link>https://w.atwiki.jp/andro_degu/pages/19.html</link>
    <description>
      *TextView各種設定に関して
&amp;bold(){&amp;link_anchor(width){幅の設定}}
&amp;bold(){&amp;link_anchor(height){高さの設定}}
&amp;bold(){&amp;link_anchor(moji_color){文字色の設定}}





-&amp;aname(width,option=nolink){幅の設定}
[[リファレンス(XML)&gt;http://developer.android.com/reference/android/widget/TextView.html#attr_android:width]]
[[リファレンス(Method)&gt;http://developer.android.com/reference/android/widget/TextView.html#setWidth(int)]]
|BGCOLOR(#ccc):&amp;bold(){方法}|BGCOLOR(#ccc):&amp;bold(){書式}|BGCOLOR(#ccc):&amp;bold(){説明}|
|XML|android:width|単位は以下の通り&amp;br()・mm（ミリ）&amp;br()・px(ピクセル)&amp;br()・dp(density-independent pixels)&amp;br()・sp(scaled pixels based on preferred font size)&amp;br()・in(inches)&amp;br()記述する場合は単位をつけて記述します。&amp;br()（例）android:height=&quot;30px&quot;|
|Method|setWidth( int )|メソッドで記述する場合は単位はピクセルのみの指定になります。|

-&amp;aname(height,option=nolink){高さの設定}
[[リファレンス(XML)&gt;http://developer.android.com/reference/android/widget/TextView.html#attr_android:width]]
[[リファレンス(Method)&gt;http://developer.android.com/reference/android/widget/TextView.html#setWidth(int)]]
|BGCOLOR(#ccc):&amp;bold(){方法}|BGCOLOR(#ccc):&amp;bold(){書式}|BGCOLOR(#ccc):&amp;bold(){説明}|
|XML|android:height|単位は以下の通り&amp;br()・mm（ミリ）&amp;br()・px(ピクセル)&amp;br()・dp(density-independent pixels)&amp;br()・sp(scaled pixels based on preferred font size)&amp;br()・in(inches)&amp;br()記述する場合は単位をつけて記述します。&amp;br()（例）android:height=&quot;30px&quot;|
|Method|setMaxHeight( int )|メソッドで記述する場合は単位はピクセルのみの指定になります。|

&amp;bold(){&amp;color(red){※幅と高さに関する注意点}}
&amp;bold(){&amp;color(red){ViewGroup.LayoutParamsのlayout_widthとlayout_heightを指定してサイズを指定している場合はFILL_PARENT指定が優先されるので気をつけること。}}


-&amp;aname(moji_color,option=nolink){文字色の設定}
[[リファレンス(XML)&gt;http://developer.android.com/reference/android/widget/TextView.html#attr_android:textColor]]
[[リファレンス(Method)&gt;http://developer.android.com/reference/android/widget/TextView.html#setWidth(int)]]
[[リファレンス(ColorStateList)&gt;http://developer.android.com/reference/android/content/res/ColorStateList.html]]
|BGCOLOR(#ccc):&amp;bold(){方法}|BGCOLOR(#ccc):&amp;bold(){書式}|BGCOLOR(#ccc):&amp;bold(){説明}|
|XML|android:textColor|色コードで指定する場合：&quot;#rgb&quot;, &quot;#argb&quot;, &quot;#rrggbb&quot;, or &quot;#aarrggbb&quot;&amp;br()リソースの参照は&quot;@[+][package:]type:name&quot; 形式で可能。&amp;br()|
|Method|setTextColor( ColorStateList )|指定の方法はXMLと同様に指定可能。&amp;br()ColorStateListクラスに関してはまだ未確認。|    </description>
    <dc:date>2010-09-24T16:09:04+09:00</dc:date>
    <utime>1285312144</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/andro_degu/pages/1.html">
    <title>トップページ</title>
    <link>https://w.atwiki.jp/andro_degu/pages/1.html</link>
    <description>
      「&amp;bold(){&quot;Android &amp; Java&quot;は電気デグーの夢をみるか？}」へようこそ

現在編集中




#amazon(487311456X,left)
#amazon(4798027049,left)
#amazon(4798120324,left)
#amazon(4048679562,left)
#amazon(4883377075)    </description>
    <dc:date>2010-09-21T21:04:23+09:00</dc:date>
    <utime>1285070663</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/andro_degu/pages/2.html">
    <title>メニュー</title>
    <link>https://w.atwiki.jp/andro_degu/pages/2.html</link>
    <description>
      &amp;bold(){メニュー}
#region(close,▼環境構築)
・[[インストール]]
・[[プラグイン設定]]
・[[アップデート]]
#endregion
#region(close,▼Layout Object)
・[[LinearLayout]]
#endregion
#region(close,▼Widgetの基本)
・[[TextView]]
#endregion

&amp;bold(){リンク}
-[[Eclipse日本語版&gt;&gt;http://mergedoc.sourceforge.jp/]]
-[[Android Developer&gt;&gt;http://developer.android.com/index.html/]]
#region(close,技術情報系サイト)
-[[日本Androidの会&gt;&gt;http://android.siprop.org/]]
-[[Android Wiki&gt;&gt;http://wikiwiki.jp/android/]]
-[[ソフトウェア技術ドキュメントを勝手に翻訳&gt;&gt;http://www.techdoctranslator.com/home]]
#endregion
#region(close,入門系サイト)
-[[技術評論社 Android入門&gt;&gt;http://gihyo.jp/dev/serial/01/androidapp]]
-[[JavaDrive Android入門&gt;&gt;http://www.javadrive.jp/android/]]
-[[All About androidプログラミング&gt;&gt;http://wikiwiki.jp/android/]]
-[[CodeZine 速習！ Androidアプリケーション開発&gt;&gt;http://codezine.jp/article/corner/338]]
#endregion



//**更新履歴
//#recent(20)

&amp;link_editmenu(text=ここを編集)
カウンター：&amp;counter(total)
今日：&amp;counter(today)
昨日：&amp;counter(yesterday)    </description>
    <dc:date>2010-09-20T15:58:47+09:00</dc:date>
    <utime>1284965927</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/andro_degu/pages/18.html">
    <title>TextView</title>
    <link>https://w.atwiki.jp/andro_degu/pages/18.html</link>
    <description>
      *TextViewの基本サンプル
XML定義で表示する場合とオンコーディングで表示する場合の２パターンです。


**オンコーディングの場合
***JAVAソース
#highlight(){{
package jp.src_test;

import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;
import android.view.ViewGroup.LayoutParams;
import android.widget.TextView;

public class src_test extends Activity {
　　/** Called when the activity is first created. */
　　@Override
　　public void onCreate(Bundle savedInstanceState) {
　　　　super.onCreate(savedInstanceState);

　　　TextView test_txtview = new TextView(this);-------------------(1)
　　　test_txtview.setText(&quot;TextViewのテスト表示&quot;);------------------(2)
　　　　test_txtview.setBackgroundColor(Color.rgb(255, 33, 66));-------(3)
　　　　test_txtview.setTextColor(Color.rgb(0,0,0));-------------------(4)

　　　　setContentView(test_txtview, new LayoutParams(--------------(5)
　　　　　　　　LayoutParams.FILL_PARENT,
　　　　　　　　LayoutParams.WRAP_CONTENT));
　　}
}
}}
&amp;bold(){(1) TextViewクラスを宣言します。}
&amp;bold(){(2) 表示する文字列を設定します。}
&amp;bold(){(3) 背景色を設定します。}
&amp;bold(){(4) 文字の色を設定します。}
&amp;bold(){(5) TextViewのサイズを指定して表示させます。}


**XML定義の場合
***JAVAソース
#highlight(){{
package jp.src_test;

import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;
import android.view.ViewGroup.LayoutParams;
import android.widget.TextView;

public class src_test extends Activity {
　　/** Called when the activity is first created. */
　　@Override
　　public void onCreate(Bundle savedInstanceState) {
　　　　super.onCreate(savedInstanceState);

　　　　setContentView(R.layout.test_textview);-------(1)
　　　　TextView tview=(TextView)findViewById(R.id.txtview);-------(2) 　　}
}
}}
&amp;bold(){(1) &quot;test_textview&quot;という名前で作成されているXMLファイルを呼び出します。}
&amp;bold(){(2) 表示したTextViewのインスタンスを作成します。}


***XMLファイル
#highlight(){{
&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:orientation=&quot;vertical&quot;
　　android:layout_width=&quot;fill_parent&quot;
　　android:layout_height=&quot;fill_parent&quot;
　　&gt;
&lt;TextView
　　android:id=&quot;@+id/txtview&quot;-------------------(3)
　　android:layout_width=&quot;fill_parent&quot;---------(4)
　　android:layout_height=&quot;wrap_content&quot;---------(5)
　　android:background=&quot;#ff3366&quot;---------(6)
　　android:textColor=&quot;#000000&quot;---------(7)
　　android:text=&quot;TextViewのテスト表示&quot;---------(8)
　　/&gt;
&lt;/LinearLayout&gt;
}}
&amp;bold(){(3) &quot;txtview&quot;という識別名でTextViewに一意になる識別子を与えます。}
&amp;bold(){(4) サイズを指定します。}
&amp;bold(){(5) サイズを指定します。}
&amp;bold(){(6) 背景色を指定します。}
&amp;bold(){(7) 文字色を指定します。}
&amp;bold(){(8) 表示する文字列を設定します。}

&amp;bold(){&amp;color(blue){このサンプルでは&quot;test_textview&quot;というXMLファイルを定義してTextViewオブジェクトには&quot;txtview&quot;という識別子を与えています。 プログラム側は定義名と識別子で画面表示を行います。}}


**実行結果
#image(http://www35.atwiki.jp/andro_degu/pub/widget/TextView01.gif,width=200,title=レイアウト（2）,http://www35.atwiki.jp/andro_degu/pub/widget/TextView01.gif,blank)    </description>
    <dc:date>2010-09-20T15:48:46+09:00</dc:date>
    <utime>1284965326</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/andro_degu/pages/16.html">
    <title>LinearLayout</title>
    <link>https://w.atwiki.jp/andro_degu/pages/16.html</link>
    <description>
      **LinearLayoutサンプル
LinearLayoutクラスをXMLで定義して画面を作ってみました。
JAVAソースはタイトル変更と参照XMLの名称を変更しただけで
***XMLの内容
#highlight(){
&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:id=&quot;@+id/base001&quot;　--------------------------------------(1)
　　android:orientation=&quot;vertical&quot;
　　android:background=&quot;#FFFFFF&quot;
　　android:layout_width=&quot;fill_parent&quot;
　　android:layout_height=&quot;fill_parent&quot;
　　&gt;
&lt;RadioGroup
　　android:id=&quot;@+id/radiogroup&quot;
　　android:layout_width=&quot;wrap_content&quot;
　　android:layout_height=&quot;wrap_content&quot;&gt;
　　　　&lt;RadioButton
　　　　　　android:id=&quot;@+id/rdio001&quot;
　　　　　　android:layout_width=&quot;wrap_content&quot;
　　　　　　android:layout_height=&quot;wrap_content&quot;
　　　　　　android:textColor=&quot;#000000&quot;
　　　　　　android:text=&quot;STAR TREK The Original Series&quot;
　　　　/&gt;
　　　　&lt;RadioButton
　　　　　　android:id=&quot;@+id/rdio002&quot;
　　　　　　android:layout_width=&quot;wrap_content&quot;
　　　　　　android:layout_height=&quot;wrap_content&quot;
　　　　　　android:textColor=&quot;#000000&quot;
　　　　　　android:text=&quot;STAR TREK The Next Generation&quot;
　　　　/&gt;
　　　　&lt;RadioButton
　　　　　　android:id=&quot;@+id/rdio003&quot;
　　　　　　android:layout_width=&quot;wrap_content&quot;
　　　　　　android:layout_height=&quot;wrap_content&quot;
　　　　　　android:textColor=&quot;#000000&quot;
　　　　　　android:text=&quot;STAR TREK The Deep Space Nine&quot;
　　　　/&gt;
　　　　&lt;RadioButton
　　　　　　android:id=&quot;@+id/rdio004&quot;
　　　　　　android:layout_width=&quot;wrap_content&quot;
　　　　　　android:layout_height=&quot;wrap_content&quot;
　　　　　　android:textColor=&quot;#000000&quot;
　　　　　　android:text=&quot;STAR TREK The Voyager&quot;
　　　　/&gt;
　　　　&lt;RadioButton
　　　　　　android:id=&quot;@+id/rdio005&quot;
　　　　　　android:layout_width=&quot;wrap_content&quot;
　　　　　　android:layout_height=&quot;wrap_content&quot;
　　　　　　android:textColor=&quot;#000000&quot;
　　　　　　android:text=&quot;STAR TREK Enterprise&quot;
　　　　/&gt;
　　&lt;/RadioGroup&gt;
　　&lt;LinearLayout
　　　　android:id=&quot;@+id/base002&quot;--------------------------------------(2)
　　　　android:orientation=&quot;horizontal&quot;
　　　　android:layout_width=&quot;310px&quot;
　　　　android:layout_height=&quot;wrap_content&quot;
　　　　android:layout_gravity=&quot;center_horizontal&quot;
　　　　android:background=&quot;#0B2BD7&quot;
　　&gt;
　　　　&lt;CheckBox
　　　　　　android:id=&quot;@+id/checkbox001&quot;
　　　　　　android:layout_width=&quot;wrap_content&quot;
　　　　　　android:layout_height=&quot;wrap_content&quot;
　　　　　　android:text=&quot;ＴＶ版&quot;
　　　　/&gt;
　　　　&lt;CheckBox
　　　　　　android:id=&quot;@+id/checkbox002&quot;
　　　　　　android:layout_width=&quot;wrap_content&quot;
　　　　　　android:layout_height=&quot;wrap_content&quot;
　　　　　　android:text=&quot;劇場版&quot;
　　　　/&gt;
　　　　&lt;CheckBox
　　　　　　android:id=&quot;@+id/checkbox003&quot;
　　　　　　android:layout_width=&quot;wrap_content&quot;
　　　　　　android:layout_height=&quot;wrap_content&quot;
　　　　　　android:text=&quot;その他&quot;
　　　　/&gt;
　　&lt;/LinearLayout&gt;
　　&lt;LinearLayout
　　　　android:id=&quot;@+id/base003&quot;--------------------------------------(3)
　　　　android:orientation=&quot;horizontal&quot;
　　　　android:layout_width=&quot;310px&quot;
　　　　android:layout_height=&quot;wrap_content&quot;
　　　　android:layout_gravity=&quot;center_horizontal&quot;
　　　　android:background=&quot;#FF0000&quot;
　　&gt;
　　　　&lt;Button
　　　　　　android:id=&quot;@+id/button001&quot;
　　　　　　android:layout_width=&quot;wrap_content&quot;
　　　　　　android:layout_height=&quot;wrap_content&quot;
　　　　　　android:text=&quot;送信&quot;
　　　　/&gt;
　　　　&lt;Button
　　　　　　android:id=&quot;@+id/button002&quot;
　　　　　　android:layout_width=&quot;wrap_content&quot;
　　　　　　android:layout_height=&quot;wrap_content&quot;
　　　　　　android:text=&quot;キャンセル&quot;
　　　　/&gt;
　　&lt;/LinearLayout&gt;
&lt;/LinearLayout&gt;
}
&amp;bold(){(1) 一番下のLinearLayoutです。ラジオボタンが乗っています。}
&amp;bold(){(2) これが真ん中のLinearLayoutです。チェックボックスが乗っています}
&amp;bold(){(3) これが一番上のLinearLayoutです。ボタンが乗っています。}


画面はLinearLayoutを３層に分けてみました。
（階層別に解りやすい様に色を変えています）	

-&amp;bold(){第１階層}
　　ラジオボタンを配置しています。
　　ただし、&quot;RadioGroup &quot;クラスを使用して&quot;RadioButton&quot;をグループ化しています。
　　れをしておかないと&quot;RadioButton&quot;の選択を１つだけにすることができません。
　　&quot;RadioGroup&quot;クラスを使用しなければ全ての&quot;RadioButton&quot;がチェック可能になります。

-&amp;bold(){第２階層}
　　チェックボックスを配置しています。
　　LinearLayoutとしては独立しています。

-&amp;bold(){第３階層}
　　ボタンを配置しています。
　　LinearLayoutとしては独立しています。

イメージはこんな感じ。
#image(http://www35.atwiki.jp/andro_degu/pub/layout/LinearLayout01_01.gif,width=400,title=レイアウト（1）,http://www35.atwiki.jp/andro_degu/pub/layout/LinearLayout01_01.gif,blank)

**実行結果
#image(http://www35.atwiki.jp/andro_degu/pub/layout/LinearLayout01.gif,width=200,title=レイアウト（2）,http://www35.atwiki.jp/andro_degu/pub/layout/LinearLayout01.gif,blank)    </description>
    <dc:date>2010-09-20T14:05:36+09:00</dc:date>
    <utime>1284959136</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/andro_degu/pages/15.html">
    <title>アップデート</title>
    <link>https://w.atwiki.jp/andro_degu/pages/15.html</link>
    <description>
      ***アップデートに関して

このサイトの手順通りに環境を構築していれば、eclipseのメニューバーから
&amp;bold(){[ヘルプ(H)]-[更新の確認]}でアップデートができます。


Androidのパッケージだけをアップデートしたい場合は
AVDマネージャを起動して、&amp;bold(){&quot;Installed Packages&quot;}を選択します。
#image(http://www35.atwiki.jp/andro_degu/pub/install/eclipse13.gif,width=400,title=プラグインの設定（13）,http://www35.atwiki.jp/andro_degu/pub/install/eclipse13.gif,blank)
&amp;bold(){Update All...ボタン}を押下します。
これでAndroidのパッケージだけがアップデートできます。    </description>
    <dc:date>2010-09-20T00:44:04+09:00</dc:date>
    <utime>1284911044</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/andro_degu/pages/14.html">
    <title>プラグイン設定</title>
    <link>https://w.atwiki.jp/andro_degu/pages/14.html</link>
    <description>
      ***プラグインとして追加
Android SDKをeclipseのプラグインとして使用する設定を行います。

eclipseを起動して下さい。
起動が完了したらメニューから&amp;bold(){[ヘルプ(H)]-[新規ソフトウェアのインストール]}を選択します。
#image(http://www35.atwiki.jp/andro_degu/pub/install/eclipse01.gif,width=400,title=プラグインの設定（1）,http://www35.atwiki.jp/andro_degu/pub/install/eclipse01.gif,blank)
この画面が表示されたら&quot;追加&quot;ボタンを押下します。

#image(http://www35.atwiki.jp/andro_degu/pub/install/eclipse02.gif,width=400,title=プラグインの設定（2）,http://www35.atwiki.jp/andro_degu/pub/install/eclipse02.gif,blank)
名前とロケーションを入力して&quot;OK&quot;ボタンを押下します。
&amp;bold(){(1)名前：任意（例：AndroidSDK)}
&amp;bold(){(2)ロケーション：https://dl-ssl.google.com/android/eclipse/}
前の画面+に戻るとダウンロードができる一覧が表示されます。


#image(http://www35.atwiki.jp/andro_degu/pub/install/eclipse03.gif,width=400,title=プラグインの設定（3）,http://www35.atwiki.jp/andro_degu/pub/install/eclipse03.gif,blank)
全て選択した後に&quot;次へ(N)&quot;ボタンを押下して下さい。


確認画面が表示されるので&quot;次へ(N)&quot;ボタンを押下して下さい。
#image(http://www35.atwiki.jp/andro_degu/pub/install/eclipse04.gif,width=400,title=プラグインの設定（4）,http://www35.atwiki.jp/andro_degu/pub/install/eclipse04.gif,blank)


[[インストール]]画面が表示されます。
&amp;bold(){&quot;使用条件の条項に同意します(A)&quot;}を選択すると&quot;完了(F)&quot;ボタンが押せるようになるので押下します。
#image(http://www35.atwiki.jp/andro_degu/pub/install/eclipse05.gif,width=400,title=プラグインの設定（5）,http://www35.atwiki.jp/andro_degu/pub/install/eclipse05.gif,blank)


インストールが完了すると下記の画面が表示されるので、再起動します。
#image(http://www35.atwiki.jp/andro_degu/pub/install/eclipse06.gif,width=400,title=プラグインの設定（6）,http://www35.atwiki.jp/andro_degu/pub/install/eclipse06.gif,blank)


再起動が完了したらツールバーを確認します。
&amp;bold(){AndroidSDK用のAVDマネージャアイコン}が登録されています。
#image(http://www35.atwiki.jp/andro_degu/pub/install/eclipse07.gif,width=400,title=プラグインの設定（7）,http://www35.atwiki.jp/andro_degu/pub/install/eclipse07.gif,blank)



***Android AVDマネージャの設定
Android SDK用ツールの設定を行う。
完了すればeclipseからAndroidアプリケーションの開発とエミュレーターの起動ができるようになります。


eclipseのメニューバーから&amp;bold(){[ウィンドウ(W)]-[設定(P)]}をクリックして設定画面を表示します。
画面が表示されたら左側のメニューからAndroidを選択します。
画面の表示内容が切り替わったら、SDKロケーションの欄に&amp;bold(){&amp;color(red){[SDK_HOME]}}を入力します。
#image(http://www35.atwiki.jp/andro_degu/pub/install/eclipse08.gif,width=400,title=プラグインの設定（8）,http://www35.atwiki.jp/andro_degu/pub/install/eclipse08.gif,blank)


ロケーションの設定が済んだらAVDマネージャを起動します。
アイコンをクリックください。
#image(http://www35.atwiki.jp/andro_degu/pub/install/eclipse07.gif,width=400,title=プラグインの設定（7）,http://www35.atwiki.jp/andro_degu/pub/install/eclipse07.gif,blank)


AVDマネージャが起動したら左側のメニューからAvailable Packagesを選択します。 
画面が切り替わりURLが表示されるので、チェックボックスにチェックを入れます。
#image(http://www35.atwiki.jp/andro_degu/pub/install/eclipse09.gif,width=400,title=プラグインの設定（9）,http://www35.atwiki.jp/andro_degu/pub/install/eclipse09.gif,blank)


画面が切り替わって、ダウンロード対象となるファイルの一覧が表示されます。
&amp;bold(){&quot;Install Selected&quot;ボタン}を押下して下さい。
#image(http://www35.atwiki.jp/andro_degu/pub/install/eclipse10.gif,width=400,title=プラグインの設定（10）,http://www35.atwiki.jp/andro_degu/pub/install/eclipse10.gif,blank)


確認画面が表示されるので&quot;インストール&quot;ボタンを押下します。

#image(http://www35.atwiki.jp/andro_degu/pub/install/eclipse11.gif,width=400,title=プラグインの設定（11）,http://www35.atwiki.jp/andro_degu/pub/install/eclipse11.gif,blank)


インストールが開始されます。
全てインストールされると画面が閉じます。これで環境の構築は完了です。
#image(http://www35.atwiki.jp/andro_degu/pub/install/eclipse12.gif,width=400,title=プラグインの設定（12）,http://www35.atwiki.jp/andro_degu/pub/install/eclipse12.gif,blank)    </description>
    <dc:date>2010-09-20T00:35:17+09:00</dc:date>
    <utime>1284910517</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/andro_degu/pages/13.html">
    <title>インストール</title>
    <link>https://w.atwiki.jp/andro_degu/pages/13.html</link>
    <description>
      **Pleiadesのインストール
***Pleiadesとは
&amp;bold(){&amp;color(blue){Eclipseの日本語対応版}}です。
ここからダウンロード
-[[MergeDoc Project&gt;http://mergedoc.sourceforge.jp/]]
2010年9月23日現在で最新版は「Eclipse 3.6.0 Helios」です。
下位バージョンもダウンロードできるので好みで決めて良いと思います。

Androidでの開発にはJavaは必須なので下記のどちらかを推奨。
-&amp;bold(){Full All in One (JREあり) －Java版}
-&amp;bold(){Full All in One (JREあり) －Ultimate版}
パッケージの内容に関しては対応サイトにて確認して下さい。

&quot;Pleiades&quot;のダウンロード完了後、解凍して任意の場所にコピーします。
以下、コピー先を&amp;bold(){&amp;color(red){[PLEIADES_HOME]}}として記述します。

-&amp;bold(){&amp;color(blue){Full All in One (JREあり) －Java版の場合}
&amp;bold(){&amp;color(red){[PLEIADES_HOME]\eclipse}}フォルダ内の&quot;eclipse.exe&quot;を実行するだけで使用可能。

-&amp;bold(){&amp;color(blue){Full All in One (JREあり) －Ultimate版の場合}
&amp;bold(){&amp;color(red){[PLEIADES_HOME]\xampp}}フォルダ内の&quot;setup_xampp.bat&quot;を実行してXAMPPの設定を完了して下さい。
コマンドプロンプト画面で&quot;Y or N&quot;の質問形式でのインストールになりますが、全て&quot;Y&quot;で問題ありません。
完了したら&amp;bold(){&amp;color(red){[PLEIADES_HOME]\eclipse}}フォルダ内の&quot;eclipse.exe&quot;を実行するだけで使用可能。


**Android SDK のインストール
***Android SDKとは
Androidアプリケーションを開発するためのライブラリ。
ここからダウンロード
-[[Android Developers&gt;http://developer.android.com/index.html]]
2010年9月23日現在で最新版は&amp;bold(){2.2}です。


ダウンロードが完了したら、任意の場所に解凍する。 以下、コピー先を&amp;bold(){&amp;color(red){[SDK_HOME]}}として記述します。

+ pathの設定
解凍・コピーが完了したら環境変数に[SDK_HOME]のpathを通します。
&amp;bold(){[コントロールパネル]-[システム]}を開いて[システムのプロパティ]画面を開きます。
#image(http://www35.atwiki.jp/andro_degu/pub/install/sys.gif,width=240,title=pathの設定（1）,http://www35.atwiki.jp/andro_degu/pub/install/sys.gif,blank)

開いたら&amp;bold(){[環境変数(N)]ボタン}を押下します。
#image(http://www35.atwiki.jp/andro_degu/pub/install/path.gif,width=240,title=pathの設定（2）,http://www35.atwiki.jp/andro_degu/pub/install/path.gif,blank)
下段の&quot;システム環境変数&quot;の一覧表示の中から&quot;Path&quot;を選択して編集します。
&amp;bold(){&amp;color(red){[SDK_HOME]}}をPath変数の末尾に追加します。    </description>
    <dc:date>2010-09-19T20:48:56+09:00</dc:date>
    <utime>1284896936</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/andro_degu/pages/5.html">
    <title>まとめサイト作成支援ツール</title>
    <link>https://w.atwiki.jp/andro_degu/pages/5.html</link>
    <description>
      * まとめサイト作成支援ツールについて
@wikiには[[まとめサイト作成を支援するツール&gt;&gt;http://atwiki.jp/matome/]]があります。
また、
 #matome_list
と入力することで、注目の掲示板が一覧表示されます。

利用例）#matome_listと入力すると下記のように表示されます
#matome_list
    </description>
    <dc:date>2010-09-17T19:57:10+09:00</dc:date>
    <utime>1284721030</utime>
  </item>
  </rdf:RDF>
