如何在Android Studio中向视图寻呼机添加按钮?

时间:2018-02-13 17:48:08

标签: android android-layout

我想在View Pager中添加一个按钮。尝试添加按钮,片段和布局但没有成功。 我也试过这个: Add button to ViewPager 但它没有用。

这是我的布局

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

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/appBarLayout">
        <include layout="@layout/app_bar_layout" android:id="@+id/main_page_toolbar" />

        <android.support.design.widget.TabLayout
            android:id="@+id/main_tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabSelectedTextColor="@android:color/white"
            app:tabTextColor="@android:color/white">

        </android.support.design.widget.TabLayout>
    </android.support.design.widget.AppBarLayout>

    <android.support.v4.view.ViewPager
        android:id="@+id/main_tabPager"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/appBarLayout">

    </android.support.v4.view.ViewPager>




</LinearLayout>

pic

这是屏幕截图,我想在页面底部添加按钮。 感谢。

2 个答案:

答案 0 :(得分:1)

尝试将RelativeLayout用于根视图并使用:

android:layout_alignParentBottom="true"

在根视图中使用LinearLayout是不可能的。而且,ConstraintLayout不是RelativeLayout,而是一个很好的替代方案。

答案 1 :(得分:1)

您可以在Relative布局中包装此LinearLayout。如果您不想将线性布局更改为RelativeLayout。这是修改后的布局XML,它将显示Button the Right Right Right。您可以将layout_alignParentRight修改为left,center取决于您的需要。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <LinearLayout 
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        tools:context="com.airpal.yonatan.airpal.MainActivity_User">

        <android.support.design.widget.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/appBarLayout">
            <include layout="@layout/app_bar_layout" android:id="@+id/main_page_toolbar" />

            <android.support.design.widget.TabLayout
                android:id="@+id/main_tabs"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:tabSelectedTextColor="@android:color/white"
                app:tabTextColor="@android:color/white">

            </android.support.design.widget.TabLayout>
        </android.support.design.widget.AppBarLayout>

        <android.support.v4.view.ViewPager
            android:id="@+id/main_tabPager"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@+id/appBarLayout">

        </android.support.v4.view.ViewPager>
    </LinearLayout>
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Submit"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"/>
</RelativeLayout>