1. 使用include 引入
1.1 创建一个layout_title.xml布局,用于布放状态栏的控件
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/back"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
1.2 在layout_main.xml中引入这个布局
<include layout="@layout/layout_title"/>
1.3 需要在MainActivity 中将自带的标题栏隐藏
ActionBar actionBar = getSu