私の ListView アイテムには 2 つの TextViews があります。XML を使用して、一度に 1 つずつ表示したいと考えています。私はこれをプログラムで行いたくありません。どうやってするの?
例: TextView A にテキストがある場合、TextView B は消えます。TextView A が空の場合、TextView B が表示されます。
私のコード
<?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:orientation="horizontal" >
<TextView
android:id="@+id/groupNameTextView"
android:layout_width="wrap_content"
android:layout_height="50dip"
android:text="TextView"
android:textSize="20dip"
android:textColor="@color/ForestGreen"
/>
<TextView
android:id="@+id/topRatedPlaceNameTextView"
android:layout_width="wrap_content"
android:layout_height="50dip"
android:text="TextView"
android:textSize="20dip"
android:textColor="@color/Azure"
/>
</LinearLayout>