如何使用layout_weight在按钮上方创建两列布局?

时间:2013-10-30 20:43:09

标签: android android-layout

如何进行此布局:

layout

到目前为止,这是我的xml代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              android:orientation="vertical">

    <TextView
        android:id="@+id/exampleText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Push the button"
        android:background="#ffff00"
        android:textColor="#000000"
        android:textStyle="bold"
        android:paddingLeft="5dip"
        android:paddingRight="5dip"
        android:layout_weight="1"/>

    <Button
        android:id="@+id/exampleButton"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="The button"
        android:layout_weight="1"/>
</LinearLayout>

1 个答案:

答案 0 :(得分:1)

你让我笑了你的绘画谢谢:)顺便说一句,你可以用textView和下面的按钮来做到这一点:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" 
        android:drawableLeft="@drawable/ic_launcher"
        android:text="dummy text 1 \n dummy text 2"
        android:gravity="center"/>

    <Button
        android:id="@+id/dummyButton"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="dummy" />

</LinearLayout>

或更复杂的事情:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:orientation="horizontal" >

        <ImageView
            android:id="@+id/dummyImageView"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1" 
            android:background="#58FA58"/>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/myDummyTextView1"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1"
                android:background="#DF013A" />

            <TextView
                android:id="@+id/myDummyTextView2"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1"
                android:background="#2EFEF7" />
        </LinearLayout>
    </LinearLayout>

    <Button
        android:id="@+id/dummyButton"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" 
        android:text="dummy"/>

</LinearLayout>

或者使用relativeLayout更高效。这将是另一个问题,read more about it。但是如果对你来说足够的话我会更喜欢第一个。