LinearLayout android方向

时间:2012-08-27 13:42:53

标签: android-linearlayout

标题##我有一个简单的问题。

我正在为应用做UI。 我正在使用linearLayout,并为我的内容应用填充,我在第一个内部使用第二个LinearLayout

所以我找到了一个xml示例,但我无法理解为什么它在Linearlayout中使用两个不同的方向? 因此,在主要的Linearlayout方向设置为水平,但在第二个linearLayout(在第一个内部)方向设置为垂直。对我来说这是无稽之谈,如果所有内容(按钮和文本视图)都应该只显示在垂直上,为什么你应该在主要的Linearlayout中使用水平方向。

谢谢!

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@color/background"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="30dip"
android:orientation="horizontal" >
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/main_title" 
android:layout_gravity="center"
android:layout_marginBottom="25dip"
android:textSize="24.5sp"/>
<Button

1 个答案:

答案 0 :(得分:0)

也许在linearLayout中,程序员希望TextViewButton在同一行中彼此相邻。