我只想在屏幕上显示两个 TextView,一个在另一个之上。
TextView B:400dp 高,在底部,TextView A:填满屏幕的其余部分。
但是,如果 TextView A 的高度小于 100dp,则不应显示(只有 TextView A 可见,其余只是空白)。
这可以仅通过 XML 实现吗?
目前我正在使用这样的东西:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:gravity="center"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@color/blue"
android:text="Image A"
android:gravity="center"
android:textSize="40sp" />
<TextView
android:layout_width="fill_parent"
android:layout_height="400dp"
android:background="@color/green"
android:text="Image B: 400dp"
android:gravity="center"
android:textSize="40sp" />
</LinearLayout>