【发布时间】:2017-08-16 14:10:37
【问题描述】:
在主从布局中包含工具栏后,主从列(以及垂直分隔线)由于某种原因消失了。为了解决这个问题需要做什么?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:divider="@drawable/divider_vertical"
android:showDividers="middle"
android:baselineAligned="false">
<include layout="@layout/myToolbar"/>
<RelativeLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:id="@+id/master_container"/>
<FrameLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3"
android:id="@+id/detail_container"/>
</LinearLayout>
【问题讨论】:
标签: android xml android-toolbar master-detail