1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-19 16:13:46 +02:00

Use wrap_content instead of ?attr/actionBarSize for Toolbar height.

This commit is contained in:
Christophe Beyls 2016-12-29 17:17:42 +01:00
parent 1348da72d4
commit fb4bd3dbb3
3 changed files with 4 additions and 4 deletions

View file

@ -19,7 +19,7 @@
android:id="@+id/toolbar" android:id="@+id/toolbar"
style="@style/Toolbar.Fosdem" style="@style/Toolbar.Fosdem"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize" android:layout_height="wrap_content"
android:background="@null"/> android:background="@null"/>
<TextView <TextView

View file

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<be.digitalia.fosdem.widgets.PhotoViewDrawerLayout <be.digitalia.fosdem.widgets.PhotoViewDrawerLayout
android:id="@+id/drawer_layout"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:fitsSystemWindows="true" android:fitsSystemWindows="true"
@ -23,7 +23,7 @@
android:id="@+id/toolbar" android:id="@+id/toolbar"
style="@style/Toolbar.Fosdem" style="@style/Toolbar.Fosdem"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"/> android:layout_height="wrap_content"/>
<FrameLayout <FrameLayout
android:id="@+id/content" android:id="@+id/content"

View file

@ -10,7 +10,7 @@
android:id="@+id/toolbar" android:id="@+id/toolbar"
style="@style/Toolbar.Fosdem" style="@style/Toolbar.Fosdem"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize" android:layout_height="wrap_content"
android:elevation="@dimen/toolbar_elevation"/> android:elevation="@dimen/toolbar_elevation"/>
<FrameLayout <FrameLayout