如何在LinearLayout下面显示一个按钮?

时间:2017-11-07 12:08:13

标签: android android-layout

我使用的是LinearLayout,因为它是我使用layout_weight的唯一方法,而且我不熟悉在RelativeLayout中均匀对齐文本视图。 (我是android的新手)。 如何获得LinearLayout下面的按钮?请注意我已经在stackoverflow上搜索了这个问题,但我还没有找到任何对我有意义或工作的东西。

<LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/llRegister2"
            android:layout_below="@+id/tvRegister2ShopTiming"
            android:layout_marginLeft="30dp"
            android:layout_marginTop="5dp"
            android:layout_marginRight="30dp"
            android:orientation="horizontal">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1">

                <EditText
                    android:id="@+id/etRegister2StartTime"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:hint="Start Time"
                    android:textColorHint="#311D3F"
                    android:textColor="#311D3F"
                    android:layout_marginRight="10dp"
                    android:focusable="false"
                    android:editable="false"/>

            </LinearLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                >
                <EditText
                    android:id="@+id/etRegister2EndTime"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:hint="End Time"
                    android:layout_marginLeft="10dp"
                    android:textColorHint="#311D3F"
                    android:textColor="#311D3F"
                    android:focusable="false"
                    android:editable="false"/>

            </LinearLayout>
        </LinearLayout>

        <Button
            android:id="@+id/btnRegister2Next"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginTop="30dp"
            android:background="@drawable/button"
            android:text="NEXT"
            android:textSize="18sp"
            android:textColor="@android:color/white"
            android:layout_alignParentBottom="true"
            />

3 个答案:

答案 0 :(得分:0)

您可以简化布局..

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/llRegister2"
    android:layout_marginLeft="30dp"
    android:layout_marginTop="5dp"
    android:layout_marginRight="30dp"
    android:orientation="horizontal">


        <EditText
            android:id="@+id/etRegister2StartTime"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content"
            android:hint="Start Time"
            android:textColorHint="#311D3F"
            android:textColor="#311D3F"
            android:layout_marginRight="10dp"
            android:focusable="false"
            android:editable="false"/>


        <EditText
            android:id="@+id/etRegister2EndTime"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="match_parent"
            android:hint="End Time"
            android:layout_marginLeft="10dp"
            android:textColorHint="#311D3F"
            android:textColor="#311D3F"
            android:focusable="false"
            android:editable="false"/>

</LinearLayout>

<Button
    android:id="@+id/btnRegister2Next"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="30dp"
    android:background="@drawable/button"
    android:text="NEXT"
    android:layout_below="@+id/llRegister2"
    android:textSize="18sp"
    android:textColor="@android:color/white"
    android:layout_alignParentBottom="true"
    />

答案 1 :(得分:0)

RelativeLayout具有用于在XML中的任何位置对齐视图的属性。您的根视图是RelativeLayout,因此请将此行添加到按钮中:

android:layout_below="@+id/llRegister2" //i'd of your LinearLayout.
android:layout_alignParentBottom="true"

快乐的编码!!

答案 2 :(得分:0)

试试这段代码

$("table:empty").remove();