<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Android のことなら アンドロイド 情報局 &#187; Android アプリ 関連 情報</title>
	<atom:link href="http://www.androidream.net/category/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.androidream.net</link>
	<description>Android（アンドロイド）携帯のアプリ情報やAndroid（アンドロイド）関連最新情報を提供。開発技術情報や話題のニュースも。</description>
	<lastBuildDate>Mon, 22 Apr 2013 07:59:26 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>LinearLayout をスクロールさせる方法</title>
		<link>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/linearlayout-%e3%82%92%e3%82%b9%e3%82%af%e3%83%ad%e3%83%bc%e3%83%ab%e3%81%95%e3%81%9b%e3%82%8b%e6%96%b9%e6%b3%95/</link>
		<comments>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/linearlayout-%e3%82%92%e3%82%b9%e3%82%af%e3%83%ad%e3%83%bc%e3%83%ab%e3%81%95%e3%81%9b%e3%82%8b%e6%96%b9%e6%b3%95/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 13:55:38 +0000</pubDate>
		<dc:creator>administrator</dc:creator>
				<category><![CDATA[Android アプリ 関連 情報]]></category>

		<guid isPermaLink="false">http://www.androidream.net/?p=431</guid>
		<description><![CDATA[LinearLayout って コンポーネントが増えたら自動でスクロールバーがつくのかと思ってたら そんなことはないんですね（汗） 下の方がしっかりはみ出て、見えなくなっちゃいました。 android:scrollbars みたいな属性もあるので試してみたけれど上手くいかない・・・。 そしたら「ScrollView」というのがあって 「これ使ったら上手くいくじゃん！」 と思ってやってみたらエラー・・・。 どうやら ScrollView は 子コンポーネントを１つしか持てないみたいです。 で、けっきょくどうしたらいいかと言うと こうやったら解決しました。 &#60;?xml version=&#34;1.0&#34; encoding=&#34;utf-8&#34;?&#62; &#60;LinearLayout xmlns:android=&#34;http://schemas.android.com/apk/res/android&#34; android:orientation=&#34;vertical&#34; android:layout_width=&#34;fill_parent&#34; android:layout_height=&#34;wrap_content&#34;&#62; &#60;ScrollView android:layout_width=&#34;fill_parent&#34; android:layout_height=&#34;wrap_content&#34; &#62; &#60;LinearLayout xmlns:android=&#34;http://schemas.android.com/apk/res/android&#34; android:orientation=&#34;vertical&#34; android:layout_width=&#34;fill_parent&#34; android:layout_height=&#34;wrap_content&#34; android:gravity=&#34;center&#34; &#62; &#160; ここにコンポーネントを記述。 TextViewやらImageViewやらButtonやら。 &#160; &#60;/LinearLayout&#62; &#8230; <a href="http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/linearlayout-%e3%82%92%e3%82%b9%e3%82%af%e3%83%ad%e3%83%bc%e3%83%ab%e3%81%95%e3%81%9b%e3%82%8b%e6%96%b9%e6%b3%95/">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>LinearLayout って<br />
コンポーネントが増えたら自動でスクロールバーがつくのかと思ってたら<br />
そんなことはないんですね（汗）</p>
<p>下の方がしっかりはみ出て、見えなくなっちゃいました。</p>
<p>android:scrollbars<br />
みたいな属性もあるので試してみたけれど上手くいかない・・・。</p>
<p>そしたら「ScrollView」というのがあって<br />
「これ使ったら上手くいくじゃん！」<br />
と思ってやってみたらエラー・・・。</p>
<p>どうやら ScrollView は<br />
子コンポーネントを１つしか持てないみたいです。</p>
<p>で、けっきょくどうしたらいいかと言うと<br />
こうやったら解決しました。</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;utf-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;LinearLayout</span></span>
<span style="color: #009900;">    <span style="color: #000066;">xmlns:android</span>=<span style="color: #ff0000;">&quot;http://schemas.android.com/apk/res/android&quot;</span></span>
<span style="color: #009900;">    <span style="color: #000066;">android:orientation</span>=<span style="color: #ff0000;">&quot;vertical&quot;</span></span>
<span style="color: #009900;">    <span style="color: #000066;">android:layout_width</span>=<span style="color: #ff0000;">&quot;fill_parent&quot;</span></span>
<span style="color: #009900;">    <span style="color: #000066;">android:layout_height</span>=<span style="color: #ff0000;">&quot;wrap_content&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ScrollView</span></span>
<span style="color: #009900;">        <span style="color: #000066;">android:layout_width</span>=<span style="color: #ff0000;">&quot;fill_parent&quot;</span></span>
<span style="color: #009900;">        <span style="color: #000066;">android:layout_height</span>=<span style="color: #ff0000;">&quot;wrap_content&quot;</span></span>
<span style="color: #009900;">    <span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;LinearLayout</span></span>
<span style="color: #009900;">            <span style="color: #000066;">xmlns:android</span>=<span style="color: #ff0000;">&quot;http://schemas.android.com/apk/res/android&quot;</span></span>
<span style="color: #009900;">            <span style="color: #000066;">android:orientation</span>=<span style="color: #ff0000;">&quot;vertical&quot;</span></span>
<span style="color: #009900;">            <span style="color: #000066;">android:layout_width</span>=<span style="color: #ff0000;">&quot;fill_parent&quot;</span></span>
<span style="color: #009900;">            <span style="color: #000066;">android:layout_height</span>=<span style="color: #ff0000;">&quot;wrap_content&quot;</span></span>
<span style="color: #009900;">            <span style="color: #000066;">android:gravity</span>=<span style="color: #ff0000;">&quot;center&quot;</span></span>
<span style="color: #009900;">        <span style="color: #000000; font-weight: bold;">&gt;</span></span>
&nbsp;
	ここにコンポーネントを記述。
	TextViewやらImageViewやらButtonやら。
&nbsp;
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/LinearLayout<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ScrollView<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/LinearLayout<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>ScrollView の中にスクロール用のLinearLayoutをひとつ入れてあげます。</p>
<p>そのLinearLayoutの中にコンポーネントを好きなように設定します。</p>
<p>うーん、なんかちょっとめんどくさい。</p>
<p>単純に、LinearLayout にスクロールバーのON/OFFプロパティでも付けてくれたらいいのに。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/linearlayout-%e3%82%92%e3%82%b9%e3%82%af%e3%83%ad%e3%83%bc%e3%83%ab%e3%81%95%e3%81%9b%e3%82%8b%e6%96%b9%e6%b3%95/feed/</wfw:commentRss>
		<slash:comments>2979</slash:comments>
		</item>
		<item>
		<title>How to scroll LinearLayout</title>
		<link>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/how-to-scroll-linearlayout/</link>
		<comments>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/how-to-scroll-linearlayout/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 13:54:19 +0000</pubDate>
		<dc:creator>administrator</dc:creator>
				<category><![CDATA[Android アプリ 関連 情報]]></category>

		<guid isPermaLink="false">http://www.androidream.net/?p=429</guid>
		<description><![CDATA[I LinearLayout What I thought more people automatically get a scroll bar component I&#8217;m not such a thing (sweat) Firmly protruding lower, I felt invisible. android: scrollbars I tried but not successful because some attributes like that. Then &#8220;ScrollView&#8221; that &#8230; <a href="http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/how-to-scroll-linearlayout/">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I LinearLayout<br />
What I thought more people automatically get a scroll bar component<br />
I&#8217;m not such a thing (sweat)</p>
<p>Firmly protruding lower, I felt invisible.</p>
<p>android: scrollbars<br />
I tried but not successful because some attributes like that.</p>
<p>Then &#8220;ScrollView&#8221; that there is<br />
&#8220;This is Ikujan 使Ttara well!&#8221;<br />
I try it with an error.</p>
<p>Apparently the ScrollView<br />
Seems to have only one child component.</p>
<p>In, say Yokudoushitaraiikato Kekki<br />
I get this resolved.</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;?xml</span> <span style="color: #000066;">version</span>=<span style="color: #ff0000;">&quot;1.0&quot;</span> <span style="color: #000066;">encoding</span>=<span style="color: #ff0000;">&quot;utf-8&quot;</span><span style="color: #000000; font-weight: bold;">?&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;LinearLayout</span></span>
<span style="color: #009900;">    <span style="color: #000066;">xmlns:android</span>=<span style="color: #ff0000;">&quot;http://schemas.android.com/apk/res/android&quot;</span></span>
<span style="color: #009900;">    <span style="color: #000066;">android:orientation</span>=<span style="color: #ff0000;">&quot;vertical&quot;</span></span>
<span style="color: #009900;">    <span style="color: #000066;">android:layout_width</span>=<span style="color: #ff0000;">&quot;fill_parent&quot;</span></span>
<span style="color: #009900;">    <span style="color: #000066;">android:layout_height</span>=<span style="color: #ff0000;">&quot;wrap_content&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;ScrollView</span></span>
<span style="color: #009900;">        <span style="color: #000066;">android:layout_width</span>=<span style="color: #ff0000;">&quot;fill_parent&quot;</span></span>
<span style="color: #009900;">        <span style="color: #000066;">android:layout_height</span>=<span style="color: #ff0000;">&quot;wrap_content&quot;</span></span>
<span style="color: #009900;">    <span style="color: #000000; font-weight: bold;">&gt;</span></span>
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;LinearLayout</span></span>
<span style="color: #009900;">            <span style="color: #000066;">xmlns:android</span>=<span style="color: #ff0000;">&quot;http://schemas.android.com/apk/res/android&quot;</span></span>
<span style="color: #009900;">            <span style="color: #000066;">android:orientation</span>=<span style="color: #ff0000;">&quot;vertical&quot;</span></span>
<span style="color: #009900;">            <span style="color: #000066;">android:layout_width</span>=<span style="color: #ff0000;">&quot;fill_parent&quot;</span></span>
<span style="color: #009900;">            <span style="color: #000066;">android:layout_height</span>=<span style="color: #ff0000;">&quot;wrap_content&quot;</span></span>
<span style="color: #009900;">            <span style="color: #000066;">android:gravity</span>=<span style="color: #ff0000;">&quot;center&quot;</span></span>
<span style="color: #009900;">        <span style="color: #000000; font-weight: bold;">&gt;</span></span>
&nbsp;
	ここにコンポーネントを記述。
	TextViewやらImageViewやらButtonやら。
&nbsp;
        <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/LinearLayout<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/ScrollView<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/LinearLayout<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>Scroll ScrollView for&#8217;ll put one in LinearLayout.</p>
<p>Set LinearLayout the components as you like in the.</p>
<p>Well, something a little troublesome.</p>
<p>Simply, LinearLayout the scroll bars ON / OFF I hope you will put in the property.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/how-to-scroll-linearlayout/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>CheckBox だけを右寄せにする方法</title>
		<link>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/426/</link>
		<comments>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/426/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 13:41:39 +0000</pubDate>
		<dc:creator>administrator</dc:creator>
				<category><![CDATA[Android アプリ 関連 情報]]></category>

		<guid isPermaLink="false">http://www.androidream.net/?p=426</guid>
		<description><![CDATA[ListView でも LinearLayout でもいいんですが、 一行のアイテムの中で 左側に TextView、右側に CheckBox を表示したいときとか、 どうやってCheckBoxを右寄せにしたらいいかわかりませんでした。 文章だけだと何言ってるかわかんないかもしれませんが 同じようにハマっている方ならわかってもらえると思います(笑) ↑こうやりたい android:layout_widthを調整したり android:gravityをいじってみたりしたんですが、 CheckBoxが消えて見えなくなっちゃったり、 両方左に寄っちゃったりして どうも上手くいかない。 カギは android:layout_weight にありました。 以下のようにすると上手く表示されます。 &#60;LinearLayout android:orientation=&#34;horizontal&#34; android:gravity=&#34;center_vertical&#34; android:layout_height=&#34;wrap_content&#34; android:layout_width=&#34;fill_parent&#34;&#62; &#60;TextView android:id=&#34;@+id/TextView01&#34; android:textAppearance=&#34;?android:attr/textAppearanceLarge&#34; android:layout_width=&#34;wrap_content&#34; android:layout_height=&#34;wrap_content&#34; android:layout_weight=&#34;1&#34; android:text=&#34;TEXT&#34;&#62; &#60;/TextView&#62; &#60;CheckBox android:id=&#34;@+id/CheckBox02&#34; android:layout_width=&#34;wrap_content&#34; android:layout_height=&#34;wrap_content&#34; android:gravity=&#34;right&#34;&#62; &#8230; <a href="http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/426/">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>ListView でも LinearLayout でもいいんですが、<br />
一行のアイテムの中で<br />
左側に TextView、右側に CheckBox を表示したいときとか、<br />
どうやってCheckBoxを右寄せにしたらいいかわかりませんでした。</p>
<p>文章だけだと何言ってるかわかんないかもしれませんが<br />
同じようにハマっている方ならわかってもらえると思います(笑)</p>
<p><a href="http://www.androidream.net/wp-content/uploads/2010/09/checkbox01.gif"><img class="alignnone size-medium wp-image-421" title="checkbox01" src="http://www.androidream.net/wp-content/uploads/2010/09/checkbox01-300x38.gif" alt="" width="300" height="38" /></a><br />
↑こうやりたい</p>
<p>android:layout_widthを調整したり<br />
android:gravityをいじってみたりしたんですが、<br />
CheckBoxが消えて見えなくなっちゃったり、<br />
両方左に寄っちゃったりして<br />
どうも上手くいかない。</p>
<p>カギは<br />
android:layout_weight<br />
にありました。</p>
<p>以下のようにすると上手く表示されます。</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;">    <span style="color: #339933;">&lt;</span>LinearLayout
    	android<span style="color: #339933;">:</span>orientation<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;horizontal&quot;</span>
    	android<span style="color: #339933;">:</span>gravity<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;center_vertical&quot;</span>
    	android<span style="color: #339933;">:</span>layout_height<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;wrap_content&quot;</span>
    	android<span style="color: #339933;">:</span>layout_width<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;fill_parent&quot;</span><span style="color: #339933;">&gt;</span>
    	<span style="color: #339933;">&lt;</span>TextView
    		android<span style="color: #339933;">:</span>id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;@+id/TextView01&quot;</span>
	    	android<span style="color: #339933;">:</span>textAppearance<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;?android:attr/textAppearanceLarge&quot;</span>
    		android<span style="color: #339933;">:</span>layout_width<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;wrap_content&quot;</span>
    		android<span style="color: #339933;">:</span>layout_height<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;wrap_content&quot;</span>
    		android<span style="color: #339933;">:</span>layout_weight<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;1&quot;</span>
	    	android<span style="color: #339933;">:</span>text<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;TEXT&quot;</span><span style="color: #339933;">&gt;</span>
    	<span style="color: #339933;">&lt;/</span>TextView<span style="color: #339933;">&gt;</span>
    	<span style="color: #339933;">&lt;</span>CheckBox
    		android<span style="color: #339933;">:</span>id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;@+id/CheckBox02&quot;</span>
    		android<span style="color: #339933;">:</span>layout_width<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;wrap_content&quot;</span>
    		android<span style="color: #339933;">:</span>layout_height<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;wrap_content&quot;</span>
    		android<span style="color: #339933;">:</span>gravity<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;right&quot;</span><span style="color: #339933;">&gt;</span>
    	<span style="color: #339933;">&lt;/</span>CheckBox<span style="color: #339933;">&gt;</span>    		 
	<span style="color: #339933;">&lt;/</span>LinearLayout<span style="color: #339933;">&gt;</span></pre></div></div>

<p>TextViewのほうに<br />
android:layout_weight=&#8221;1&#8243;<br />
を追加してあります。</p>
<p>これはコンポーネントに重みづけをするらしく<br />
どうやら余白を取る優先順位を決めてるみたいなんですよね。<br />
（デフォルトでは0）</p>
<p>この例だと、<br />
TextViewが1、CheckBoxが0なので<br />
両者の間の空白をすべてTextViewが持っていくようです。</p>
<p>ちなみに、<br />
android:layout_weight=&#8221;1&#8243;<br />
がないとこうなります。<br />
<a href="http://www.androidream.net/wp-content/uploads/2010/09/checkbox02.gif"><img class="alignnone size-medium wp-image-422" title="checkbox02" src="http://www.androidream.net/wp-content/uploads/2010/09/checkbox02-300x38.gif" alt="" width="300" height="38" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/426/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>CheckBox only way to right-justify</title>
		<link>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/checkbox-only-way-to-right-justify/</link>
		<comments>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/checkbox-only-way-to-right-justify/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 13:37:18 +0000</pubDate>
		<dc:creator>administrator</dc:creator>
				<category><![CDATA[Android アプリ 関連 情報]]></category>

		<guid isPermaLink="false">http://www.androidream.net/?p=419</guid>
		<description><![CDATA[But I hope LinearLayout ListView, but Line item in Left TextView, if you want to display to the right or CheckBox, CheckBox did not know how do I align the. I do not know what you might say it is &#8230; <a href="http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/checkbox-only-way-to-right-justify/">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>But I hope LinearLayout ListView, but<br />
Line item in<br />
Left TextView, if you want to display to the right or CheckBox,<br />
CheckBox did not know how do I align the.</p>
<p>I do not know what you might say it is only text<br />
I hope you know who you are as addicted (laughs)</p>
<p><a href="http://www.androidream.net/wp-content/uploads/2010/09/checkbox01.gif"><img class="alignnone size-medium wp-image-421" title="checkbox01" src="http://www.androidream.net/wp-content/uploads/2010/09/checkbox01-300x38.gif" alt="" width="300" height="38" /></a><br />
I want this ↑</p>
<p>android: layout_width and adjust<br />
android: gravity and I did try to tweak,<br />
CheckBox They put out of sight, but<br />
I wonder both stopped at the left<br />
Well not much.</p>
<p>The key<br />
android: layout_weight<br />
There to.</p>
<p>Appears to be well below that.</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;">    <span style="color: #339933;">&lt;</span>LinearLayout
    	android<span style="color: #339933;">:</span>orientation<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;horizontal&quot;</span>
    	android<span style="color: #339933;">:</span>gravity<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;center_vertical&quot;</span>
    	android<span style="color: #339933;">:</span>layout_height<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;wrap_content&quot;</span>
    	android<span style="color: #339933;">:</span>layout_width<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;fill_parent&quot;</span><span style="color: #339933;">&gt;</span>
    	<span style="color: #339933;">&lt;</span>TextView
    		android<span style="color: #339933;">:</span>id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;@+id/TextView01&quot;</span>
	    	android<span style="color: #339933;">:</span>textAppearance<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;?android:attr/textAppearanceLarge&quot;</span>
    		android<span style="color: #339933;">:</span>layout_width<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;wrap_content&quot;</span>
    		android<span style="color: #339933;">:</span>layout_height<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;wrap_content&quot;</span>
    		android<span style="color: #339933;">:</span>layout_weight<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;1&quot;</span>
	    	android<span style="color: #339933;">:</span>text<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;TEXT&quot;</span><span style="color: #339933;">&gt;</span>
    	<span style="color: #339933;">&lt;/</span>TextView<span style="color: #339933;">&gt;</span>
    	<span style="color: #339933;">&lt;</span>CheckBox
    		android<span style="color: #339933;">:</span>id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;@+id/CheckBox02&quot;</span>
    		android<span style="color: #339933;">:</span>layout_width<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;wrap_content&quot;</span>
    		android<span style="color: #339933;">:</span>layout_height<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;wrap_content&quot;</span>
    		android<span style="color: #339933;">:</span>gravity<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;right&quot;</span><span style="color: #339933;">&gt;</span>
    	<span style="color: #339933;">&lt;/</span>CheckBox<span style="color: #339933;">&gt;</span>    		 
	<span style="color: #339933;">&lt;/</span>LinearLayout<span style="color: #339933;">&gt;</span></pre></div></div>

<p>TextView toward<br />
android: layout_weight = &#8220;1&#8243;<br />
Have been added.</p>
<p>This component weighting Sururashiku<br />
It seems like I&#8217;m taking the margin seems to prioritize.<br />
(The default 0)</p>
<p>This example has,<br />
The TextView 1, CheckBox at 0<br />
All the spaces between them seem to carry the TextView.</p>
<p>Incidentally,<br />
android: layout_weight = &#8220;1&#8243;<br />
This will not be.</p>
<p><a href="http://www.androidream.net/wp-content/uploads/2010/09/checkbox02.gif"><img class="alignnone size-medium wp-image-422" title="checkbox02" src="http://www.androidream.net/wp-content/uploads/2010/09/checkbox02-300x38.gif" alt="" width="300" height="38" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/checkbox-only-way-to-right-justify/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>finish() でActivity が終了しない</title>
		<link>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/finish-%e3%81%a7activity-%e3%81%8c%e7%b5%82%e4%ba%86%e3%81%97%e3%81%aa%e3%81%84/</link>
		<comments>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/finish-%e3%81%a7activity-%e3%81%8c%e7%b5%82%e4%ba%86%e3%81%97%e3%81%aa%e3%81%84/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 13:04:59 +0000</pubDate>
		<dc:creator>administrator</dc:creator>
				<category><![CDATA[Android アプリ 関連 情報]]></category>

		<guid isPermaLink="false">http://www.androidream.net/?p=417</guid>
		<description><![CDATA[よくAndroid関連の書籍やサイトなどで 『 finish() で Activity を終了させる』 と書いてあるんですが、 ちょっと微妙な思い違いをしていたようで めちゃめちゃハマってしまいました(=_=;) finish() は、 『Activity を即時終了させる』 と思っていたんですが、 どうやらそうでないようです。 とあるアプリを開発していて ある条件下で Activity を終了させたくて finish() を使っていたんです。 こんな感じ↓ &#8212; 前処理; if (式) finish(); 後処理; &#8212; そしたら、どうも finish() が効いていないようで 後処理の部分でエラーで落ちてしまう・・・。 試しに、 &#8212; Log.d(&#8220;CHECK&#8221;, &#8220;before finish()&#8221;); finish(); Log.d(&#8220;CHECK&#8221;, &#8230; <a href="http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/finish-%e3%81%a7activity-%e3%81%8c%e7%b5%82%e4%ba%86%e3%81%97%e3%81%aa%e3%81%84/">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>よくAndroid関連の書籍やサイトなどで<br />
『 finish() で Activity を終了させる』<br />
と書いてあるんですが、<br />
ちょっと微妙な思い違いをしていたようで<br />
めちゃめちゃハマってしまいました(=_=;)</p>
<p>finish() は、<br />
『Activity を即時終了させる』<br />
と思っていたんですが、<br />
どうやらそうでないようです。</p>
<p>とあるアプリを開発していて<br />
ある条件下で Activity を終了させたくて finish() を使っていたんです。</p>
<p>こんな感じ↓</p>
<p>&#8212;<br />
前処理;<br />
if (式) finish();<br />
後処理;<br />
&#8212;</p>
<p>そしたら、どうも finish() が効いていないようで<br />
後処理の部分でエラーで落ちてしまう・・・。</p>
<p>試しに、<br />
&#8212;<br />
Log.d(&#8220;CHECK&#8221;, &#8220;before finish()&#8221;);<br />
finish();<br />
Log.d(&#8220;CHECK&#8221;, &#8220;after finish()&#8221;);<br />
&#8212;<br />
としてLogCatを見てみたら<br />
&#8212;<br />
09-19 23:29:37.263: DEBUG/CHECK(13016): before finish()<br />
09-19 23:29:37.273: DEBUG/CHECK(13016): after finish()<br />
&#8212;<br />
としっかりスルーされてしまい<br />
「『after finish()』じゃねーよ！！ヾ(`Д´*)ノ」<br />
と一人ボケツッコミのようなことをしてしまいました</p>
<p>で、ひとりでは解決できなかったので<br />
知恵者のみなさまにアドバイスを願ったところ<br />
『finish() は Activity を即時終了するわけではない』<br />
ということがわかりました。</p>
<p>finish() はどうやら<br />
「終了してもいいよ」<br />
という宣言だけであり、その場で即時終了されるわけではなく<br />
任意のタイミングでAndroid OSに終了されるのだそうです。</p>
<p>つまり、人間からみたら即時終了しているように見えても<br />
Androidからしたら、終了宣言をしたActivityをOSが<br />
気づいたときに終了しているみたいです。</p>
<p>そこには人間にはわからない多少のタイムラグがあり<br />
その間にもプログラムは進行するので、<br />
後処理の部分にエラーなどがあると強制終了されてしまうみたいです。</p>
<p>finish() のあとには、余計な処理を入れないようにしたほうがいいです。</p>
<p>というわけで、先程のプログラムは<br />
&#8212;<br />
前処理;<br />
if (!式) 後処理;<br />
finish();<br />
&#8212;<br />
とすることで解決しました。</p>
<p>んー、いやしかし、<br />
&#8212;<br />
前処理;<br />
if (式) finish();<br />
後処理;<br />
&#8212;<br />
とやりたいときもあるだろうに・・・。</p>
<p>そんなときはどうすんだろ？</p>
]]></content:encoded>
			<wfw:commentRss>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/finish-%e3%81%a7activity-%e3%81%8c%e7%b5%82%e4%ba%86%e3%81%97%e3%81%aa%e3%81%84/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>finish () does not terminate in Activity</title>
		<link>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/finish-does-not-terminate-in-activity/</link>
		<comments>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/finish-does-not-terminate-in-activity/#comments</comments>
		<pubDate>Sat, 25 Sep 2010 13:04:29 +0000</pubDate>
		<dc:creator>administrator</dc:creator>
				<category><![CDATA[Android アプリ 関連 情報]]></category>

		<guid isPermaLink="false">http://www.androidream.net/?p=415</guid>
		<description><![CDATA[Well sites, and books relating to the Android [Finish () to terminate in the Activity] But I have written, The misunderstanding seems to have been a little sensitive I hooked (=_=;) wreck finish () is Immediately terminate] [Activity But I &#8230; <a href="http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/finish-does-not-terminate-in-activity/">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Well sites, and books relating to the Android<br />
[Finish () to terminate in the Activity]<br />
But I have written,<br />
The misunderstanding seems to have been a little sensitive<br />
I hooked (=_=;) wreck</p>
<p>finish () is<br />
Immediately terminate] [Activity<br />
But I thought,<br />
This is apparently not in others.</p>
<p>They developed a certain application<br />
Activity in some circumstances do not want to end the finish () I was using.</p>
<p>Like this ↓</p>
<p>---<br />
Pretreatment;<br />
if (expression) finish ();<br />
Disposition;<br />
---</p>
<p>Then, somehow finish () is not working like<br />
Falls in parts of the post-processing error.</p>
<p>As a test,<br />
---<br />
Log.d ("CHECK", "before finish ()");<br />
finish ();<br />
Log.d ("CHECK", "after finish ()");<br />
---<br />
Why do not you look at a LogCat<br />
---<br />
09-19 23:29:37.263: DEBUG / CHECK (13016): before finish ()<br />
09-19 23:29:37.273: DEBUG / CHECK (13016): after finish ()<br />
---<br />
Through the good and away<br />
"[After finish ()] is not about you! ヾ (` Д &#8216;*) Bruno &#8221;<br />
I like to be alone with Boketsukkomi</p>
<p>, And so could not solve alone<br />
I wished everyone a wise man for advice<br />
[Finish () will not terminate immediately Activity] is not<br />
I found that.</p>
<p>finish () is apparently<br />
&#8220;Can I quit you&#8221;<br />
Is only a declaration, not be terminated immediately on the spot<br />
At any time of the Android OS seems to be terminated.</p>
<p>In other words, it appears to be an immediate exit from a human Why<br />
Karashitara Android, an OS that had declared the end Activity<br />
It seems when you have finished noticed.</p>
<p>There are a few people know there is a time lag<br />
In the meantime, so the program progresses,<br />
It seems there would have been killed and post-processing part of the error.</p>
<p>finish () is followed, it is better to put that extra processing.</p>
<p>So, the earlier program<br />
&#8212;<br />
Pretreatment;<br />
if (! expression) post-treatment;<br />
finish ();<br />
&#8212;<br />
Can be solved.</p>
<p>Hmm, but no,<br />
&#8212;<br />
Pretreatment;<br />
if (expression) finish ();<br />
Disposition;<br />
&#8212;<br />
We would want to sometimes.</p>
<p>When such Sundaro do?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/finish-does-not-terminate-in-activity/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>App Inventorがバージョンアップ</title>
		<link>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/app-inventor%e3%81%8c%e3%83%90%e3%83%bc%e3%82%b8%e3%83%a7%e3%83%b3%e3%82%a2%e3%83%83%e3%83%97/</link>
		<comments>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/app-inventor%e3%81%8c%e3%83%90%e3%83%bc%e3%82%b8%e3%83%a7%e3%83%b3%e3%82%a2%e3%83%83%e3%83%97/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 01:59:58 +0000</pubDate>
		<dc:creator>administrator</dc:creator>
				<category><![CDATA[Android アプリ 関連 情報]]></category>

		<guid isPermaLink="false">http://www.androidream.net/?p=395</guid>
		<description><![CDATA[プログラミング不要でAndroidアプリが作れる App Inventorがバージョンアップされました。 自分の使っているApp Inventorが最新のものになっているかは ブラウザの右下にあるバージョンを確認して &#8220;Build: Tue Sep 14 18:05:48 2010 (1284512748) &#8212; 17278198&#8243; になっていれば、最新の状態になってます。 もし最新になっていなければ、 ブラウザをリロードして最新バージョンにアップデートしてください。 今回のバージョンアップで解消されたバグ・新機能は以下のとおり。 - Add a new &#8216;Scrollable&#8217; property to Screens to control whether it is scrollable. - Improve the buggy behavior of Fill &#8230; <a href="http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/app-inventor%e3%81%8c%e3%83%90%e3%83%bc%e3%82%b8%e3%83%a7%e3%83%b3%e3%82%a2%e3%83%83%e3%83%97/">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>プログラミング不要でAndroidアプリが作れる<br />
App Inventorがバージョンアップされました。</p>
<p>自分の使っているApp Inventorが最新のものになっているかは<br />
ブラウザの右下にあるバージョンを確認して<br />
<strong> &#8220;Build: Tue Sep 14 18:05:48 2010 (1284512748) &#8212; 17278198&#8243;</strong><br />
になっていれば、最新の状態になってます。</p>
<p>もし最新になっていなければ、<br />
ブラウザをリロードして最新バージョンにアップデートしてください。</p>
<p>今回のバージョンアップで解消されたバグ・新機能は以下のとおり。<br />
- Add a new &#8216;Scrollable&#8217; property to Screens to control whether it is<br />
scrollable.<br />
- Improve the buggy behavior of Fill Parent<br />
- Enable multiple FIll Parent components and have them share the<br />
available space.<br />
- Table arrangement on phone does not match arrangement in designer<br />
- Tables don&#8217;t expand automatically<br />
- Blank cells not respected in table layout.<br />
- Italic text doesn&#8217;t work on the phone<br />
- In Chrome, changing Alignment or FontTypeface doesn&#8217;t work<br />
- Uploading an asset with the same name makes it incorrectly show a<br />
duplicate entry in the Media section<br />
- Codeblocks can&#8217;t load project if I type &#8220;$JSON&#8221; in the Screen&#8217;s title<br />
- Can&#8217;t reload a project that has a \n in a label&#8217;s text property<br />
- Certain combination of colons and spaces in label text cause unexpected<br />
line wraps and previewer selection errors<br />
- Uploading a badly formated project zip file causes a crash report on<br />
the server and the client doesn&#8217;t get back a sensible error message<br />
- My Projects from home page cause an exception<br />
- Phone call dials only 10 digits<br />
- Designer UI is too tall to height of some components to be changed</p>
<p>機能追加というよりは、バグ修正が主な内容のようですね。</p>
<p>でもこうやってどんどんバージョンUPしてくれるのは嬉しい限り。</p>
<p>どんどん機能が増えて、App Inventorで作れるアプリの種類が増えたらいいですね。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/app-inventor%e3%81%8c%e3%83%90%e3%83%bc%e3%82%b8%e3%83%a7%e3%83%b3%e3%82%a2%e3%83%83%e3%83%97/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>App Inventor is upgraded.</title>
		<link>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/app-inventor-is-upgraded/</link>
		<comments>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/app-inventor-is-upgraded/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 01:58:01 +0000</pubDate>
		<dc:creator>administrator</dc:creator>
				<category><![CDATA[Android アプリ 関連 情報]]></category>

		<guid isPermaLink="false">http://www.androidream.net/?p=393</guid>
		<description><![CDATA[The application can be made without programming Android App Inventor has been updated. Do you use your App Inventor has become the latest thing Check the bottom right of the browser version &#8220;Build: Tue Sep 14 18:05:48 2010 (1284512748) &#8211; &#8230; <a href="http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/app-inventor-is-upgraded/">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The application can be made without programming Android<br />
App Inventor has been updated.</p>
<p>Do you use your App Inventor has become the latest thing<br />
Check the bottom right of the browser version<br />
&#8220;Build: Tue Sep 14 18:05:48 2010 (1284512748) &#8211; 17278198&#8243;<br />
If it is, and I&#8217;m getting up to date.</p>
<p>If the latest is, if<br />
Please update your browser and reload the latest version.</p>
<p>   &#8211; Add a new &#8216;Scrollable&#8217; property to Screens to control whether it is<br />
   scrollable.<br />
   &#8211; Improve the buggy behavior of Fill Parent<br />
   &#8211; Enable multiple FIll Parent components and have them share the<br />
   available space.<br />
   &#8211; Table arrangement on phone does not match arrangement in designer<br />
   &#8211; Tables don&#8217;t expand automatically<br />
   &#8211; Blank cells not respected in table layout.<br />
   &#8211; Italic text doesn&#8217;t work on the phone<br />
   &#8211; In Chrome, changing Alignment or FontTypeface doesn&#8217;t work<br />
   &#8211; Uploading an asset with the same name makes it incorrectly show a<br />
   duplicate entry in the Media section<br />
   &#8211; Codeblocks can&#8217;t load project if I type &#8220;$JSON&#8221; in the Screen&#8217;s title<br />
   &#8211; Can&#8217;t reload a project that has a \n in a label&#8217;s text property<br />
   &#8211; Certain combination of colons and spaces in label text cause unexpected<br />
   line wraps and previewer selection errors<br />
   &#8211; Uploading a badly formated project zip file causes a crash report on<br />
   the server and the client doesn&#8217;t get back a sensible error message<br />
   &#8211; My Projects from home page cause an exception<br />
   &#8211; Phone call dials only 10 digits<br />
   &#8211; Designer UI is too tall to height of some components to be changed </p>
<p>Rather than adding features, I like the main content of bug fixes.</p>
<p>Fast version of it in this way is I&#8217;m glad they have to UP.</p>
<p>Rapidly increasing capabilities, App Inventor I hope more people make the kind of application.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/app-inventor-is-upgraded/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Android ドキュメントが 日本語 で読めるサイト</title>
		<link>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/371/</link>
		<comments>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/371/#comments</comments>
		<pubDate>Sun, 12 Sep 2010 15:53:24 +0000</pubDate>
		<dc:creator>administrator</dc:creator>
				<category><![CDATA[Android アプリ 関連 情報]]></category>

		<guid isPermaLink="false">http://www.androidream.net/?p=371</guid>
		<description><![CDATA[Androidのドキュメントは基本的に英語なので 英語が読めない人にはアプリ開発はちょっとハードルが高いようです。 以下のサイトは、一部ですが日本語に翻訳されたものが掲載されています。 ソフトウェア技術ドキュメントを勝手に翻訳－Android 開発ガイド http://www.techdoctranslator.com/android それと、現在日本でも Androidドキュメント翻訳プロジェクトが正式に発足しているようです。 Androidドキュメント日本語翻訳プロジェクト(android-docs-jp) http://groups.google.co.jp/group/android-docs-jp?hl=ja （有用なものがそろうのは、少し先になりそうですが・・・） この翻訳プロジェクト、 翻訳者はたくさんいるんですがレビューする人が少なくて、 頓挫してしまいそうなんだそうです・・・。 翻訳は英語力が求められますが、 レビューアーはそこまで求められません。 我こそはという方、 勉強がてらぜひ参加してみてください。]]></description>
			<content:encoded><![CDATA[<p>Androidのドキュメントは基本的に英語なので<br />
英語が読めない人にはアプリ開発はちょっとハードルが高いようです。</p>
<p>以下のサイトは、一部ですが日本語に翻訳されたものが掲載されています。</p>
<p><strong>ソフトウェア技術ドキュメントを勝手に翻訳－Android 開発ガイド</strong><br />
<a href="http://www.techdoctranslator.com/android" target="_blank"> http://www.techdoctranslator.com/android</a></p>
<p>それと、現在日本でも<br />
Androidドキュメント翻訳プロジェクトが正式に発足しているようです。</p>
<p><strong>Androidドキュメント日本語翻訳プロジェクト(android-docs-jp)</strong><br />
<a href="http://groups.google.co.jp/group/android-docs-jp?hl=ja" target="_blank"> http://groups.google.co.jp/group/android-docs-jp?hl=ja</a></p>
<p>（有用なものがそろうのは、少し先になりそうですが・・・）</p>
<p>この翻訳プロジェクト、<br />
翻訳者はたくさんいるんですがレビューする人が少なくて、<br />
頓挫してしまいそうなんだそうです・・・。</p>
<p>翻訳は英語力が求められますが、<br />
レビューアーはそこまで求められません。</p>
<p>我こそはという方、<br />
勉強がてらぜひ参加してみてください。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/371/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>Read site in Japanese documents Android</title>
		<link>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/read-site-in-japanese-documents-android/</link>
		<comments>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/read-site-in-japanese-documents-android/#comments</comments>
		<pubDate>Sun, 12 Sep 2010 15:52:38 +0000</pubDate>
		<dc:creator>administrator</dc:creator>
				<category><![CDATA[Android アプリ 関連 情報]]></category>

		<guid isPermaLink="false">http://www.androidream.net/?p=369</guid>
		<description><![CDATA[Android documentation in English, so basically Application developers who can not read English is a little like a high hurdle. The following sites are listed that have been translated into Japanese is a part. Freely translated technical documentation software-Android Developer&#8217;s &#8230; <a href="http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/read-site-in-japanese-documents-android/">続きを読む <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Android documentation in English, so basically<br />
Application developers who can not read English is a little like a high hurdle.</p>
<p>The following sites are listed that have been translated into Japanese is a part.</p>
<p>Freely translated technical documentation software-Android Developer&#8217;s Guide</p>
<p>http://www.techdoctranslator.com/android</p>
<p>Also, currently in Japan<br />
Android seems to have officially launched the document translation project.</p>
<p>Japanese Document Translation Project Android (android-docs-jp)</p>
<p>http://groups.google.co.jp/group/android-docs-jp?hl=ja</p>
<p>(The get together is useful, it is going to be a little ahead.)</p>
<p>This translation project,<br />
Fewer translators who have a lot I&#8217;d like to review,<br />
It seems to me that is just stalled.</p>
<p>The English translation is required,<br />
Les viewer is not prompted so much.</p>
<p>It is I who said,<br />
Please join us partly for the study.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.androidream.net/android-%e3%82%a2%e3%83%97%e3%83%aa-%e9%96%a2%e9%80%a3-%e6%83%85%e5%a0%b1/read-site-in-japanese-documents-android/feed/</wfw:commentRss>
		<slash:comments>41</slash:comments>
		</item>
	</channel>
</rss>
