我正在阅读developer.android.com上的教程,但他们没有涵盖我想尝试的内容。
在我的XML文件(LinearLayout)中,我有3个元素,一个文本块和两个按钮。
我希望TextBlock占用所有可用宽度。在HTML术语中我希望它是阻止的。
然后在下面我希望2个按钮在同一条线上。在HTML术语中,我希望它是内联的。
我的XML:
<LinearLayout android:orientation="horizontal">
<TextView
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/app_name" />
<Button
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
答案 0 :(得分:1)
你可以在一个线性布局中做到这一点,但它不会非常灵活。您要么使用相对布局并将按钮放在文本视图下方,要么可以使用两个线性布局(首先是包含textview和第二个线性布局的垂直方向,一个是包含两个按钮)
答案 1 :(得分:1)
另一种选择: 创建一个linearlayout并添加textview和另一个linear2out,其方向水平在2个按钮之内。
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/app_name" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
答案 2 :(得分:0)
简单修复:
<TextView
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/app_name" />
<Button android:id = "@+id/thisbutton"
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="thisbutton"
/>
这是基本的想法。 查找布局中可用的所有功能。因为有很多,而且它们非常灵活。