我不明白为什么下面的代码将我的 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>