我正在设计我的应用程序 UI。我需要一个看起来像这样的布局:
(< 和 > 是按钮)。问题是,我不知道如何确保 TextView 将填充剩余空间,两个按钮具有固定大小。
如果我将 fill_parent 用于文本视图,则无法显示第二个按钮 (>)。
如何制作看起来像图像的布局?
woodshy 的回答对我有用,它比 Ungureanu Liviu 的回答更简单,因为它不使用RelativeLayout. 为了清楚起见,我给出了我的布局:
RelativeLayout
<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > <Button android:layout_width = "80dp" android:layout_weight = "0" android:layout_height = "wrap_content" android:text="<"/> <TextView android:layout_width = "fill_parent" android:layout_height = "wrap_content" android:layout_weight = "1"/> <Button android:layout_width = "80dp" android:layout_weight = "0" android:layout_height = "wrap_content" android:text=">"/> </LinearLayout>