Android マーケットからメールが届きました。
===
We're writing to inform you about some changes to Android Market that require your attention.
Over the next few weeks, we'll be adding paid apps support for additional countries. If you have selected to publish your paid apps to all locations and intend to support all new locations as we expand the number of supported countries for paid apps, you don't have to do anything. If you have selected to publish your paid apps to all locations but intend to only target the currently supported 14 countries, please update your location selections to target these specific countries.
Please look for follow-up emails when we introduce paid apps support for specific additional countries in the coming weeks. At that time, you'll have the option to target these specific countries.
Thanks, and we look forward to continue working with you on Android
Market.
===
Android マーケットに14ヶ国追加 の続きを読む
LinearLayout って
コンポーネントが増えたら自動でスクロールバーがつくのかと思ってたら
そんなことはないんですね(汗)
下の方がしっかりはみ出て、見えなくなっちゃいました。
LinearLayout をスクロールさせる方法 の続きを読む
ListView でも LinearLayout でもいいんですが、
一行のアイテムの中で
左側に TextView、右側に CheckBox を表示したいときとか、
どうやってCheckBoxを右寄せにしたらいいかわかりませんでした。
文章だけだと何言ってるかわかんないかもしれませんが
同じようにハマっている方ならわかってもらえると思います(笑)
↑こうやりたい
android:layout_widthを調整したり
android:gravityをいじってみたりしたんですが、
CheckBoxが消えて見えなくなっちゃったり、
両方左に寄っちゃったりして
どうも上手くいかない。
カギは
android:layout_weight
にありました。
CheckBox だけを右寄せにする方法 の続きを読む