diff options
author | Scott Jackson <daneren2005@gmail.com> | 2014-06-10 22:36:51 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2014-06-10 22:36:51 -0700 |
commit | bca7e778faff8e614c69a3c11b0958800719261c (patch) | |
tree | e6d26544a09103fd46323c52af9145730ece376a /res/layout | |
parent | feabbbf4f5919932e6446978af328dbbef2cf37f (diff) | |
download | dsub-bca7e778faff8e614c69a3c11b0958800719261c.tar.gz dsub-bca7e778faff8e614c69a3c11b0958800719261c.tar.bz2 dsub-bca7e778faff8e614c69a3c11b0958800719261c.zip |
Slight tweaks to user layouts
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/user_list_item.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/res/layout/user_list_item.xml b/res/layout/user_list_item.xml index 40dcf06d..657dd910 100644 --- a/res/layout/user_list_item.xml +++ b/res/layout/user_list_item.xml @@ -8,18 +8,18 @@ <ImageView
android:id="@+id/item_avatar"
android:src="@drawable/ic_social_person"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
+ android:layout_width="@dimen/AlbumArt.Small"
+ android:layout_height="@dimen/AlbumArt.Small"
android:layout_gravity="left|center_vertical"/>
<TextView
android:id="@+id/item_name"
android:layout_width="0dip"
- android:layout_height="wrap_content"
+ android:layout_height="match_parent"
android:layout_weight="1"
android:textAppearance="?android:attr/textAppearanceMedium"
android:gravity="left|center_vertical"
- android:paddingLeft="6dip"
+ android:paddingLeft="12dip"
android:paddingRight="6dip"
android:minHeight="50dip"
android:background="@android:color/transparent"/>
|