レイアウトの問題で助けが得られるかどうか疑問に思っていました。基本的に、画面に表示するには 3 つのこと (最終的にはそれ以上) が必要です。
次の画像のようにする必要があります (ただし、他の画像にはスペースの背景が表示されています)。
しかし、それは次のようになります (これは Nexus One AVD と私の Galaxy Nexus フォンからのものです):
それか、画面の半分ほど下に「既に知っている変数を選択してください」というテキストが表示されます。正常に表示されるメイン画面があります。さまざまなレイアウト、さまざまな高さ、高さと幅を手動で入力してみましたが、うまく機能しないようです。
「壊れた」xmlレイアウトのコードは次のとおりです...
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_horizontal" >
<TextView
android:id="@+id/app_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/app_name"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#FFFFFF"
android:textSize="28sp" />
<TextView
android:id="@+id/recommend_instructions"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/app_name"
android:layout_centerHorizontal="true"
android:gravity="center_horizontal"
android:text="@string/recommend_instructions"
android:textAppearance="?android:attr/textAppearanceSmall" />
<Button
android:id="@+id/button_submit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:text="@string/button_submit" />
</RelativeLayout>
はRelativeLayout
私を近づけることができましたが、誰かが私の XML ファイルを調べて、中央のテキストのサイズ変更を引き起こしていることがわかる何かがあるかどうかを知らせてくれることを望んでいました. gravity='center_horizontal'
プレースホルダー レイアウトを使用して上部に保持しようとしましたが、拡大し続けます。だから私は、「大統一理論」が中間点あたりまで拡大してそれを押し下げているか、それ自体が画面の中央に投稿されていることを知っています.
gravity = 'center'
以前に持っていたコードだと思っていましたが、それを変更しても問題は解決しませんでした。
どんな助けでも大歓迎です。
繰り返しますが、誰かが私のテキスト コードのサイズを変更しているものを理解するのを手伝ってくれることを願っています。