<?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/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/12.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/andro_degu/pages/11.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/andro_degu/pages/10.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):    </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/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;b    </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;    </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/an    </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アプリケーションを開発するためのライブラリ。
ここからダウンロード
-[[    </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/12.html">
    <title>プラグイン/人気商品一覧</title>
    <link>https://w.atwiki.jp/andro_degu/pages/12.html</link>
    <description>
      * 人気商品一覧
@wikiのwikiモードでは
 #price_list(カテゴリ名)
と入力することで、あるカテゴリの売れ筋商品のリストを表示することができます。

カテゴリには以下のキーワードがご利用できます。
|キーワード|表示される内容|
|ps3|PlayStation3|
|ps2|PlayStation3|
|psp|PSP|
|wii|Wii|
|xbox|XBOX|
|nds|Nintendo DS|
|desctop-pc|デスクトップパソコン|
|note-pc|ノートパソコン|
|mp3player|デジタルオーディオプレイヤー|
|kaden|家電|
|aircon|エアコン|
|camera|カメラ|
|game-toy|ゲーム・おもちゃ全般|
|all|指定無し|

空白の場合はランダムな商品が表示されます。

※このプラグインは[[価格比較サイト@PRICE&gt;&gt;http://atprice.jp]]のデータを利用しています。

-----

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

ゲーム・おもちゃ全般の売れ筋商品
#price_list(game-toy)

ノートパソコンの売れ筋商品
#price_list(game-toy)

人気商品リスト
#price_list()
    </description>
    <dc:date>2010-09-17T19:57:10+09:00</dc:date>
    <utime>1284721030</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/andro_degu/pages/11.html">
    <title>プラグイン/コメント</title>
    <link>https://w.atwiki.jp/andro_degu/pages/11.html</link>
    <description>
      * コメントプラグイン
@wikiのwikiモードでは
 #comment()
と入力することでコメントフォームを簡単に作成することができます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_60_ja.html


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

#comment    </description>
    <dc:date>2010-09-17T19:57:10+09:00</dc:date>
    <utime>1284721030</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/andro_degu/pages/10.html">
    <title>プラグイン/関連ブログ</title>
    <link>https://w.atwiki.jp/andro_degu/pages/10.html</link>
    <description>
      * 関連ブログ
@wikiのwikiモードでは
 #bf(興味のある単語)
と入力することで、あるキーワードに関連するブログ一覧を表示することができます

詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_161_ja.html

-----


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


#bf(ゲーム)
    </description>
    <dc:date>2010-09-17T19:57:10+09:00</dc:date>
    <utime>1284721030</utime>
  </item>
  </rdf:RDF>
