我有這種佈局。我的問題是,當txtName有一個很長的值時,txtAge不能被看到。請幫助我解決這個問題,而不使用maxWidth屬性。提前致謝。TextView隱藏,如果其他文本很長
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:orientation="horizontal" >
<TextView
android:id="@+id/txtName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:singleLine="true"
android:textColor="@color/white"
android:textSize="@dimen/textLarge" />
<TextView
android:id="@+id/txtAge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:singleLine="true"
android:textColor="@color/white"
android:textSize="@dimen/textLarge" />
</LinearLayout>
你需要一個線性佈局?或者我們可以使用相對佈局? –
是的,我們可以使用任何這些佈局。 – batista
在此處添加了另一個答案 –