Android底部元素没有显示

时间:2015-07-20 08:18:31

标签: android xml layout

我的布局元素有问题。它们在移动电话中显示,但在Genymotion或Android Emulator中都没有。

底部没有显示两个按钮。

这是我的代码。

<FrameLayout 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"
    tools:context="vitrine.ndex.com.vitrine.fragments.FavouriteFragment">

<!-- TODO: Update blank fragment layout -->

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/linearLayout2"
        android:layout_alignParentBottom="true">

        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:text="New Button"
            android:id="@+id/cartButton"
            android:layout_weight="1" />

        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:text="New Button"
            android:id="@+id/historyButton"
            android:layout_weight="1" />
    </LinearLayout>

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/linearLayout3">

        <include
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            layout="@layout/header_panel_layout" />
    </LinearLayout>

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/linearLayout3"
        android:layout_above="@+id/linearLayout2">

        <ListView
            android:layout_width="wrap_content"
            android:layout_height="0dp"
            android:id="@+id/favouriteShopListView"
            android:layout_weight="1" />
    </LinearLayout>

</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

您需要在布局中进行一些更改。

  1. 将整个RelativeLayout包裹在ScrollView
  2. ListView中取出RelativeLayout并将其放在ScrollView
  3. 之外的布局中