在MvxExpandableListView上覆盖工具栏

问题描述 投票:0回答:1

通过切换按钮,我的axml文件中的工具栏变得可见/不可见。数据显示在MvxExpandableListView中。列表视图出现后,工具栏位于后面。如何从axml或Viewmodel始终将工具栏设置为前面?

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

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:local="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_above="@+id/ListViewRelativeLayout">
    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        local:MvxBind="Visible IsNotificationBarVisible">
        <ImageView/>
        <LinearLayout>
        <TextView/>
        <TextView/>
        </LinearLayout>
        <ImageView/>
    </android.support.v7.widget.Toolbar>
    </RelativeLayout>
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
android:id="@+id/ListViewRelativeLayout">
        <TextView/>
        <MvxExpandableListView />
    </LinearLayout>

</RelativeLayout>
android xamarin.android mvvmcross
1个回答
1
投票

你的布局太复杂了。如果您只需要将视图叠加在一起,则可以使用FrameLayoutFrameLayout中最后定义的视图将位于顶部。所以类似于:

<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:local="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <MvxExpandableListView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        ... />
    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        local:MvxBind="Visible IsNotificationBarVisible">
</FrameLayout>
© www.soinside.com 2019 - 2024. All rights reserved.