mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 13:45:35 +03:00
Fixed. Line behind the folder is not shown in the upload view
This commit is contained in:
parent
81a8604f7f
commit
0470de47e0
2 changed files with 117 additions and 105 deletions
|
@ -19,11 +19,16 @@
|
|||
-->
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/ListItemLayout"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_width="match_parent"
|
||||
android:background="@drawable/list_selector"
|
||||
android:orientation="horizontal"
|
||||
android:orientation="vertical"
|
||||
android:layout_height="56dp">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<FrameLayout
|
||||
android:layout_width="56dp"
|
||||
android:layout_height="56dp"
|
||||
|
@ -144,5 +149,11 @@
|
|||
android:layout_marginRight="4dp"
|
||||
android:gravity=""
|
||||
android:src="@android:drawable/checkbox_off_background" />
|
||||
</LinearLayout>
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:background="@color/list_divider_background"></View>
|
||||
|
||||
</LinearLayout>
|
||||
|
|
|
@ -23,5 +23,6 @@
|
|||
<color name="owncloud_blue_bright">#00ddff</color>
|
||||
<color name="list_item_lastmod_and_filesize_text">#989898</color>
|
||||
<color name="textColor">#303030</color>
|
||||
<color name="list_divider_background">#fff0f0f0</color>
|
||||
|
||||
</resources>
|
Loading…
Reference in a new issue