diff options
| author | Nancy Chen <nancychen@google.com> | 2014-07-30 11:26:11 -0700 |
|---|---|---|
| committer | Nancy Chen <nancychen@google.com> | 2014-07-30 11:26:11 -0700 |
| commit | 15b1df12b7c8379b9efcdf68d8a556bf44ce5930 (patch) | |
| tree | b29ed27ca6f74873bb5b252039b6abe02a790678 | |
| parent | 593b21e1d3d05dbf35936d56beaab0f518ac7080 (diff) | |
| download | packages_apps_PhoneCommon-15b1df12b7c8379b9efcdf68d8a556bf44ce5930.tar.gz packages_apps_PhoneCommon-15b1df12b7c8379b9efcdf68d8a556bf44ce5930.tar.bz2 packages_apps_PhoneCommon-15b1df12b7c8379b9efcdf68d8a556bf44ce5930.zip | |
Turn dialpad menu icon to invisible rather than gone
Invisible allows it to take up space even though it is not visible,
meaning that the alignment of the digits edittext will be consistent
when the menu overflow icon reappears.
Bug: 15697565
Change-Id: Iae73313079a6136a18ca4e98805d168b5fbb56f0
| -rw-r--r-- | res/layout/dialpad_view.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/res/layout/dialpad_view.xml b/res/layout/dialpad_view.xml index 1552ab3..9340667 100644 --- a/res/layout/dialpad_view.xml +++ b/res/layout/dialpad_view.xml @@ -43,7 +43,7 @@ android:paddingRight="@dimen/dialpad_digits_menu_right_padding" android:contentDescription="@string/description_dialpad_overflow" android:gravity="center" - android:visibility="gone" /> + android:visibility="invisible" /> <view class="com.android.phone.common.dialpad.DigitsEditText" xmlns:ex="http://schemas.android.com/apk/res-auto" |
