mirror of
https://github.com/nextcloud/android.git
synced 2024-11-26 23:28:42 +03:00
Fix magic numbers in search_users_groups_layout.xml #12
This commit is contained in:
parent
b7e6c287c9
commit
c8989afb66
2 changed files with 5 additions and 2 deletions
|
@ -21,7 +21,7 @@
|
|||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
android:id="@+id/search_layout"
|
||||
android:minWidth="200dp"
|
||||
android:minWidth="@dimen/search_users_groups_layout_width"
|
||||
android:layout_marginRight="@dimen/standard_margin"
|
||||
android:layout_marginBottom="@dimen/standard_half_margin">
|
||||
|
||||
|
@ -45,7 +45,7 @@
|
|||
android:layout_height="match_parent"
|
||||
android:id="@+id/searchUsersListView"
|
||||
android:scrollbars="vertical"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_marginLeft="@dimen/search_users_groups_layout_list_view_margin"
|
||||
android:layout_marginRight="@dimen/standard_half_margin"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
|
|
@ -109,4 +109,7 @@
|
|||
<dimen name="standard_quarter_margin_negative_independent">-4dip</dimen>
|
||||
|
||||
<dimen name="preview_image_fragment_display_text_margin">40dp</dimen>
|
||||
|
||||
<dimen name="search_users_groups_layout_width">200dp</dimen>
|
||||
<dimen name="search_users_groups_layout_list_view_margin">20dp</dimen>
|
||||
</resources>
|
||||
|
|
Loading…
Reference in a new issue