Add list_item_divider and related resources
BIN
OsmAnd-telegram/res/drawable-hdpi/bg_shadow_list_bottom.9.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
OsmAnd-telegram/res/drawable-hdpi/bg_shadow_list_top.9.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
OsmAnd-telegram/res/drawable-mdpi/bg_shadow_list_bottom.9.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
OsmAnd-telegram/res/drawable-mdpi/bg_shadow_list_top.9.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
OsmAnd-telegram/res/drawable-xhdpi/bg_shadow_list_bottom.9.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
OsmAnd-telegram/res/drawable-xhdpi/bg_shadow_list_top.9.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
OsmAnd-telegram/res/drawable-xxhdpi/bg_shadow_list_bottom.9.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
OsmAnd-telegram/res/drawable-xxhdpi/bg_shadow_list_top.9.png
Normal file
After Width: | Height: | Size: 1 KiB |
15
OsmAnd-telegram/res/layout/card_bottom_divider.xml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:id="@+id/bottomShadowView"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:scaleType="fitXY"
|
||||||
|
android:src="@drawable/bg_shadow_list_bottom"/>
|
||||||
|
|
||||||
|
</LinearLayout>
|
19
OsmAnd-telegram/res/layout/card_top_divider.xml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:id="@+id/topShadowView"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
<View
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="6dp"/>
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:scaleType="fitXY"
|
||||||
|
android:src="@drawable/bg_shadow_list_top"/>
|
||||||
|
|
||||||
|
</LinearLayout>
|
16
OsmAnd-telegram/res/layout/list_item_divider.xml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
<include layout="@layout/card_bottom_divider"/>
|
||||||
|
|
||||||
|
<View
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="4dp"/>
|
||||||
|
|
||||||
|
<include layout="@layout/card_top_divider"/>
|
||||||
|
|
||||||
|
</LinearLayout>
|