6

我只想在屏幕上显示两个 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>
4

1 回答 1

0

如果您打算在其他几个布局中使用此功能,我会考虑将其构建到自定义视图中,您可以在其中添加额外的属性 customer:minSize=100dp。在该自定义视图中,您可能会添加 Marko 的建议(即 textview.getHeight > customer:minSize 然后 textview.setVisibility(View.Gone/Invisible)

http://developer.android.com/training/custom-views/index.html http://developer.android.com/guide/topics/ui/custom-components.html ... http://mobile.tutsplus .com/tutorials/android/android-sdk-creating-custom-views-2/

否则,我只会在您的活动中实施它。

于 2013-04-24T18:25:17.490 回答