Makes the toolbar shadow visible for pre-Lollipop android versions and fixes a crash when deleting a draft with no media attached.
parent
c7f3354c40
commit
384c377129
@ -1,5 +0,0 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> |
||||
<item android:color="@color/button_dark" android:state_checked="true" /> |
||||
<item android:color="?material_drawer_primary_icon" /> |
||||
</selector> |
@ -1,36 +1,25 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<android.support.design.widget.CoordinatorLayout |
||||
xmlns:android="http://schemas.android.com/apk/res/android" |
||||
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||||
xmlns:tools="http://schemas.android.com/tools" |
||||
xmlns:app="http://schemas.android.com/apk/res-auto" |
||||
android:id="@+id/activity_view_thread" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent" |
||||
tools:context="com.keylesspalace.tusky.FavouritesActivity"> |
||||
|
||||
<LinearLayout |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent" |
||||
android:orientation="vertical"> |
||||
|
||||
<android.support.v7.widget.Toolbar |
||||
android:id="@+id/toolbar" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="?attr/actionBarSize" |
||||
android:elevation="4dp" |
||||
android:background="?attr/toolbar_background_color" /> |
||||
<include layout="@layout/toolbar_basic" /> |
||||
|
||||
<FrameLayout |
||||
android:id="@+id/fragment_container" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent" /> |
||||
|
||||
</LinearLayout> |
||||
android:layout_height="match_parent" |
||||
app:layout_behavior="@string/appbar_scrolling_view_behavior" /> |
||||
|
||||
<FrameLayout |
||||
android:id="@+id/overlay_fragment_container" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent"> |
||||
android:layout_height="match_parent" /> |
||||
|
||||
</FrameLayout> |
||||
<include layout="@layout/toolbar_shadow_shim" /> |
||||
|
||||
</android.support.design.widget.CoordinatorLayout> |
@ -0,0 +1,20 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<merge xmlns:android="http://schemas.android.com/apk/res/android" |
||||
xmlns:app="http://schemas.android.com/apk/res-auto"> |
||||
|
||||
<android.support.design.widget.AppBarLayout |
||||
android:layout_width="match_parent" |
||||
android:layout_height="wrap_content" |
||||
android:stateListAnimator="@null" |
||||
android:elevation="0dp" |
||||
app:layout_collapseMode="pin"> |
||||
|
||||
<android.support.v7.widget.Toolbar |
||||
android:id="@+id/toolbar" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="?attr/actionBarSize" |
||||
android:background="?attr/toolbar_background_color" /> |
||||
|
||||
</android.support.design.widget.AppBarLayout> |
||||
|
||||
</merge> |
@ -0,0 +1,13 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<merge xmlns:android="http://schemas.android.com/apk/res/android" |
||||
xmlns:app="http://schemas.android.com/apk/res-auto"> |
||||
|
||||
<View |
||||
android:id="@+id/toolbar_shadow_shim" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="4dp" |
||||
android:background="@drawable/material_drawer_shadow_bottom" |
||||
app:layout_behavior="@string/appbar_scrolling_view_behavior" |
||||
app:layout_collapseMode="pin" /> |
||||
|
||||
</merge> |
Loading…
Reference in new issue