5
您好我正在開發小型Android應用程序,其中我試圖用AppBarLayout
顯示工具欄。我想在我的工具欄上顯示一些視圖。我在下面的方法嘗試這樣:Android小部件AppBarLayout總是排在最前
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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="com.example.nileshkashid.samplesearchbarapplication.Main2Activity">
<android.support.design.widget.AppBarLayout
android:id="@+id/toolbar_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@android:color/transparent"
/>
</android.support.design.widget.AppBarLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="150dp"
android:background="@android:color/holo_red_dark"
></RelativeLayout>
<RelativeLayout
android:layout_width="150dp"
android:layout_height="150dp"
android:background="@android:color/holo_green_dark"
></RelativeLayout>
</RelativeLayout>
所以在上面的佈局後兩者相對佈局來下我AppBarLayout
。但我想在我的toolbar_view
上顯示它們。我錯過了什麼或做錯了什麼。需要一些幫助。謝謝。
海拔的伎倆:) –