Android-屏幕底部切断了ExpandableListView内容

时间:2018-07-13 20:32:17

标签: android xml expandablelistview android-constraintlayout

我是Android的新手,所以我可能只是在做一些愚蠢的事情,但这是我的桌子的样子:

我以为只是底部导航栏覆盖了内容,但是当我在底部导航栏位于设备而非屏幕上的设备上进行测试时,我遇到了同样的问题。这是我的XML:

    <?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"
    tools:context=".TipActivity">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?android:attr/actionBarSize"
        android:background="?android:attr/colorPrimary"
        android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
        app:layout_constraintTop_toTopOf="parent"/>

    <ExpandableListView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/tip_list_view"
        app:layout_constraintTop_toBottomOf="@id/toolbar">
    </ExpandableListView>

</android.support.constraint.ConstraintLayout>

1 个答案:

答案 0 :(得分:0)

我发现了问题。通过将工具栏和ExpandableListView放在垂直的线性布局中,并使其他所有内容保持不变,视图就可以正确放置。