0

我有一个基本单元格中ListView有两个TextViews单元格,我希望s在另一个单元格中没有任何文本时TextView居中到中间。LayoutTextView

这是我当前的 XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:minHeight="80dp"
    android:orientation="vertical"
    android:gravity="center_vertical"
    android:paddingLeft="20dp"
    android:paddingRight="20dp" >

    <TextView android:id="@+id/titleTextView"
        android:textStyle="bold"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="2dp"
        android:textSize="16sp"/>

    <TextView android:id="@+id/detailsTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="2dp"
        android:layout_below="@id/titleTextView"
        android:textSize="12sp"/>


</RelativeLayout>

我使用 a 是RelativeLayout因为我希望在添加更多元素时使用它,但我想先弄清楚这部分。TextView切换到 LinearLayout 对调整s没有任何影响。

我是否必须以编程方式调整视图?如果是这样,我应该如何处理?从布局中删除一个视图(这需要一个LinearLayout,对吧)?

4

1 回答 1

2

Simply make the TextView "gone" when it is empty, when a view is "gone" it has no effect on the layout it is in, thus the other TextView would center because of the gravity property you have added.

textView.setVisibility(View.GONE);
于 2013-01-23T22:25:31.043 回答