fix text color in dropdown of light theme (#1286)
* fix text color in dropdown of light theme * rename theme to make clear where it is usedmain
parent
1cc55959ac
commit
51be949f09
@ -1,28 +1,30 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||||
android:orientation="vertical" |
||||
xmlns:app="http://schemas.android.com/apk/res-auto" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent" |
||||
android:background="@android:color/black"> |
||||
android:background="@android:color/black" |
||||
android:orientation="vertical"> |
||||
|
||||
<com.keylesspalace.tusky.view.ImageViewPager |
||||
android:id="@+id/viewPager" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent" |
||||
android:id="@+id/viewPager" /> |
||||
android:layout_height="match_parent" /> |
||||
|
||||
<androidx.appcompat.widget.Toolbar |
||||
android:id="@+id/toolbar" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="?attr/actionBarSize" |
||||
android:background="@color/toolbar_view_media" |
||||
android:theme="@style/AppTheme.Account.AppBarLayout"/> |
||||
android:theme="@style/ViewMediaActivity.AppBarLayout" |
||||
app:titleTextColor="@color/white" /> |
||||
|
||||
<ProgressBar |
||||
android:id="@+id/progressBarShare" |
||||
style="?android:attr/progressBarStyleLarge" |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:visibility="gone" |
||||
android:layout_gravity="center"/> |
||||
android:layout_gravity="center" |
||||
android:visibility="gone" /> |
||||
|
||||
</FrameLayout> |
Loading…
Reference in new issue