Fix magic numbers in account_action.xml #12

This commit is contained in:
Divay Prakash 2016-10-07 04:33:53 +05:30
parent 07c0cafadd
commit 1da94ff82a
No known key found for this signature in database
GPG key ID: 81365216092AA888
2 changed files with 5 additions and 2 deletions

View file

@ -20,7 +20,7 @@
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="72dp"
android:layout_height="@dimen/account_action_layout_height"
android:orientation="horizontal"
android:weightSum="1">
@ -34,7 +34,7 @@
<TextView
android:id="@+id/user_name"
android:layout_width="0dp"
android:layout_width="@dimen/zero"
android:layout_height="fill_parent"
android:layout_marginLeft="@dimen/list_item_avatar_text_margin"
android:layout_weight="1"

View file

@ -48,4 +48,7 @@
<dimen name="list_item_avatar_icon_margin">20dp</dimen>
<dimen name="list_item_avatar_text_margin">28dp</dimen>
<dimen name="account_action_layout_height">72dp</dimen>
<dimen name="zero">0dp</dimen>
</resources>