如何设计一个两个按钮彼此相邻(水平)的Android应用程序,在这些按钮下面我有一个使用LinearLayout的textview(垂直)?无法让它发挥作用。
答案 0 :(得分:3)
<LinearLayout android:layout_width="fill_parent"
android:layout_height="wrap_content" android:orientation="horizontal">
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content" />
答案 1 :(得分:2)
在这种情况下使用RelativeLayout要好得多。您刚刚根据视图 relative 的项目描述了所需的结果。它比你想象的更简单。
http://developer.android.com/resources/tutorials/views/hello-relativelayout.html