次のコードで TextView が画面の左上隅に配置される理由がわかりません。私のlayout_gravityの理解に基づいて、代わりにTextViewを画面の下部に配置する必要があるようです。
誰かが私のためにこれに光を当てることができますか? この線形レイアウトは、非常に単純に見えますが、多くの頭痛の種になりました。これほど単純に見えるものを、どうして把握するのが王族の苦痛になるのでしょうか?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#FF0000">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello"
android:layout_gravity="bottom"
android:background="#FFF"
/>
</LinearLayout>