Fixed. Line behind the folder is not shown in the upload view

This commit is contained in:
jabarros 2015-01-22 09:29:36 +01:00
parent 81a8604f7f
commit 0470de47e0
2 changed files with 117 additions and 105 deletions

View file

@ -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>

View file

@ -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>