Size print destination to support font sizing

am: cb1926afba

Change-Id: I2c49f14994f07c719457c2bdf88ddec874ff0014
This commit is contained in:
Philip P. Moltmann
2016-08-29 22:02:36 +00:00
committed by android-build-merger
2 changed files with 5 additions and 3 deletions

View File

@@ -16,7 +16,6 @@
<com.android.printspooler.widget.PrintContentView <com.android.printspooler.widget.PrintContentView
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:printspooler="http://schemas.android.com/apk/res/com.android.printspooler"
android:id="@+id/options_content" android:id="@+id/options_content"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="fill_parent"> android:layout_height="fill_parent">
@@ -28,12 +27,14 @@
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:paddingStart="8dip" android:paddingStart="8dip"
android:layout_marginEnd="16dp"
android:elevation="@dimen/preview_controls_elevation" android:elevation="@dimen/preview_controls_elevation"
android:background="?android:attr/colorPrimary"> android:background="?android:attr/colorPrimary">
<Spinner <Spinner
android:id="@+id/destination_spinner" android:id="@+id/destination_spinner"
android:layout_width="@dimen/preview_destination_spinner_width" android:layout_width="wrap_content"
android:minWidth="@dimen/preview_destination_spinner_width"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginTop="4dip" android:layout_marginTop="4dip"
android:dropDownWidth="wrap_content" android:dropDownWidth="wrap_content"

View File

@@ -16,7 +16,8 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeightSmall" android:layout_height="wrap_content"
android:minHeight="?android:attr/listPreferredItemHeightSmall"
style="?android:attr/spinnerItemStyle" style="?android:attr/spinnerItemStyle"
android:orientation="horizontal" android:orientation="horizontal"
android:gravity="start|center_vertical"> android:gravity="start|center_vertical">