mirror of
https://github.com/nextcloud/android.git
synced 2024-11-26 23:28:42 +03:00
Fix magic numbers in account_action.xml #12
This commit is contained in:
parent
07c0cafadd
commit
1da94ff82a
2 changed files with 5 additions and 2 deletions
|
@ -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"
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue