diff options
author | Artur Dryomov <artur.dryomov@gmail.com> | 2013-09-29 23:45:13 +0300 |
---|---|---|
committer | Artur Dryomov <artur.dryomov@gmail.com> | 2013-09-30 00:39:24 +0300 |
commit | 3b0c8081de5168b2df12f8cd9a146905680d14ab (patch) | |
tree | 5b440f54df0e1981adebec05cb6b4dc194e71a1f /android | |
parent | 3b631e4142090fa90631d68b1c388b1fd94ab10c (diff) |
Add some horizontal space for the computers list.
Change-Id: I4dffdf3477e4c98420ef3dee9990485c70d7a1ec
Diffstat (limited to 'android')
-rw-r--r-- | android/sdremote/res/layout/fragment_computers_list.xml | 5 | ||||
-rw-r--r-- | android/sdremote/res/values/dimens.xml | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/android/sdremote/res/layout/fragment_computers_list.xml b/android/sdremote/res/layout/fragment_computers_list.xml index 46cb106058f5..4f344335c702 100644 --- a/android/sdremote/res/layout/fragment_computers_list.xml +++ b/android/sdremote/res/layout/fragment_computers_list.xml @@ -35,7 +35,10 @@ <ListView android:id="@android:id/list" + android:scrollbarStyle="outsideOverlay" + android:paddingLeft="@dimen/padding_horizontal_list" + android:paddingRight="@dimen/padding_horizontal_list" android:layout_width="match_parent" android:layout_height="match_parent"/> -</ViewAnimator>
\ No newline at end of file +</ViewAnimator> diff --git a/android/sdremote/res/values/dimens.xml b/android/sdremote/res/values/dimens.xml index 7da8e69fe758..259ab3a862b1 100644 --- a/android/sdremote/res/values/dimens.xml +++ b/android/sdremote/res/values/dimens.xml @@ -16,6 +16,7 @@ <dimen name="padding_section_item">8dp</dimen> <dimen name="padding_empty_slide_layout">16dp</dimen> + <dimen name="padding_horizontal_list">16dp</dimen> <dimen name="padding_horizontal_list_item">8dp</dimen> <dimen name="padding_horizontal_connection_layout">40dp</dimen> <dimen name="padding_horizontal_action_bar_button">20dp</dimen> |