Add shadow to action bar
This commit is contained in:
parent
a4c15fbb07
commit
0173c0b774
1 changed files with 32 additions and 28 deletions
|
@ -6,41 +6,45 @@
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
|
|
||||||
<android.support.v7.widget.Toolbar
|
<android.support.design.widget.AppBarLayout
|
||||||
android:id="@+id/map_markers_toolbar"
|
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="@dimen/dashboard_map_toolbar"
|
android:layout_height="@dimen/dashboard_map_toolbar">
|
||||||
android:background="@color/osmand_orange"
|
|
||||||
android:minHeight="@dimen/dashboard_map_toolbar"
|
|
||||||
android:theme="?attr/toolbar_theme"
|
|
||||||
app:contentInsetLeft="54dp"
|
|
||||||
app:contentInsetStart="54dp">
|
|
||||||
|
|
||||||
<LinearLayout
|
<android.support.v7.widget.Toolbar
|
||||||
|
android:id="@+id/map_markers_toolbar"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="56dp"
|
android:layout_height="match_parent"
|
||||||
android:gravity="center_vertical">
|
android:theme="?attr/actionBarStyle"
|
||||||
|
app:contentInsetLeft="54dp"
|
||||||
|
app:contentInsetStart="54dp">
|
||||||
|
|
||||||
<TextView
|
<LinearLayout
|
||||||
android:layout_width="0dp"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_weight="1"
|
android:gravity="center_vertical">
|
||||||
android:ellipsize="end"
|
|
||||||
android:gravity="center_vertical"
|
|
||||||
android:maxLines="1"
|
|
||||||
android:text="@string/map_markers"
|
|
||||||
android:textColor="@color/color_white"
|
|
||||||
android:textSize="@dimen/default_list_text_size_large"/>
|
|
||||||
|
|
||||||
<ImageButton
|
<TextView
|
||||||
android:id="@+id/options_button"
|
android:layout_width="0dp"
|
||||||
style="@style/Widget.AppCompat.ActionButton"
|
android:layout_height="match_parent"
|
||||||
android:layout_width="48dp"
|
android:layout_weight="1"
|
||||||
android:layout_height="48dp"
|
android:ellipsize="end"
|
||||||
android:src="@drawable/ic_overflow_menu_white"/>
|
android:gravity="center_vertical"
|
||||||
</LinearLayout>
|
android:maxLines="1"
|
||||||
|
android:text="@string/map_markers"
|
||||||
|
android:textColor="@color/color_white"
|
||||||
|
android:textSize="@dimen/default_list_text_size_large"/>
|
||||||
|
|
||||||
</android.support.v7.widget.Toolbar>
|
<ImageButton
|
||||||
|
android:id="@+id/options_button"
|
||||||
|
style="@style/Widget.AppCompat.ActionButton"
|
||||||
|
android:layout_width="48dp"
|
||||||
|
android:layout_height="48dp"
|
||||||
|
android:src="@drawable/ic_overflow_menu_white"/>
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</android.support.v7.widget.Toolbar>
|
||||||
|
|
||||||
|
</android.support.design.widget.AppBarLayout>
|
||||||
|
|
||||||
<FrameLayout
|
<FrameLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
|
Loading…
Reference in a new issue