2018-06-20 17:01:15 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-08-06 17:18:14 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-06-20 17:01:15 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2018-08-03 17:44:42 +02:00
|
|
|
<FrameLayout
|
2018-06-20 17:01:15 +02:00
|
|
|
android:layout_width="match_parent"
|
2018-08-03 17:44:42 +02:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/recycler_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:paddingBottom="@dimen/list_view_bottom_padding"
|
|
|
|
android:scrollbars="vertical"/>
|
|
|
|
|
2018-08-06 17:18:14 +02:00
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
2018-08-03 17:44:42 +02:00
|
|
|
android:id="@+id/open_osmand_btn"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom|center_horizontal"
|
2018-08-06 17:18:14 +02:00
|
|
|
android:background="@drawable/img_shadow_fab"
|
2018-08-03 17:44:42 +02:00
|
|
|
android:drawableLeft="@drawable/ic_action_osmand_plus"
|
2018-08-06 17:18:14 +02:00
|
|
|
android:drawablePadding="@dimen/content_padding_half"
|
2018-08-03 17:44:42 +02:00
|
|
|
android:drawableStart="@drawable/ic_action_osmand_plus"
|
2018-08-06 17:18:14 +02:00
|
|
|
android:gravity="center"
|
|
|
|
android:paddingLeft="32dp"
|
|
|
|
android:paddingRight="32dp"
|
|
|
|
android:text="@string/open_osmand"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
app:typeface="@string/font_roboto_medium"/>
|
2018-08-03 17:44:42 +02:00
|
|
|
|
|
|
|
</FrameLayout>
|
2018-06-20 17:01:15 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|