add toolbar button style for 'large' devices so buttons are bigger on

the Kindle Fire but not too big on phones.
This commit is contained in:
Eric House 2012-07-02 07:39:06 -07:00
parent 8ebe180eab
commit be9ed5b963
2 changed files with 11 additions and 0 deletions

View file

@ -43,7 +43,9 @@
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:minHeight="48dp"
>
<ImageButton android:id="@+id/prevhint_button_horizontal"
style="@style/toolbar_button"
android:src="@drawable/prev_hint"

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="toolbar_button">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_weight">1</item>
</style>
</resources>