我将此作为布局的一部分:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
android:orientation="horizontal"
android:layout_weight="0.15">
<TextView
android:id="@+id/question_text"
android:layout_width="0dip"
android:layout_height="fill_parent" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:text="@string/score_label" />
<TextView
android:id="@+id/score_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right" />
</LinearLayout>
第一个TextView
在应用程序开始时为空。它的内容是动态变化的。这使得它占用零空间,以便第二个TextView
对齐到左侧,即使它layout_gravity
设置为right
。
如何在不考虑内容的情况下使其占据固定宽度?
我考虑过使用layout_weight
,但我知道建议反对使用嵌套权重(父级ViewGroup
有一个layout_weight
属性)。也许我应该使用RelativeLayout
?
感谢您的任何建议。