a46b3e4ba0
# Conflicts: # OsmAnd/res/values/strings.xml # OsmAnd/src/net/osmand/plus/activities/search/GeoIntentActivity.java # OsmAnd/src/net/osmand/plus/dashboard/DashRateUsFragment.java # OsmAnd/src/net/osmand/plus/osmedit/OpenstreetmapRemoteUtil.java # OsmAnd/src/net/osmand/plus/osmedit/OsmBugsRemoteUtil.java
67 lines
No EOL
2.5 KiB
XML
67 lines
No EOL
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:osmand="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/bg_card"
|
|
android:layout_marginTop="@dimen/dash_margin"
|
|
android:layout_marginBottom="@dimen/dash_margin"
|
|
android:layout_marginLeft="@dimen/dash_margin_h"
|
|
android:layout_marginRight="@dimen/dash_margin_h"
|
|
android:orientation="vertical">
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/header"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/do_you_like_osmand"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="20sp"
|
|
android:paddingBottom="10dp"
|
|
android:paddingLeft="@dimen/list_content_padding"
|
|
android:paddingRight="@dimen/list_content_padding"
|
|
android:paddingTop="8dp"
|
|
osmand:typeface="@string/font_roboto_medium"/>
|
|
|
|
<TextView
|
|
android:id="@+id/subheader"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
style="@style/DashboardSubHeader"
|
|
android:text="@string/we_really_care_about_your_opinion"
|
|
android:paddingBottom="@dimen/list_content_padding"/>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="?attr/dashboard_divider" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="@dimen/list_header_height"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/positive_button"
|
|
style="@style/DashboardGeneralButton"
|
|
android:layout_width="0dp"
|
|
android:gravity="center"
|
|
android:layout_weight="1"
|
|
android:text="@string/shared_string_yes"/>
|
|
|
|
<View
|
|
android:layout_width="1dp"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/dashboard_divider"/>
|
|
|
|
<Button
|
|
android:id="@+id/negative_button"
|
|
style="@style/DashboardGeneralButton"
|
|
android:layout_width="0dp"
|
|
android:gravity="center"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="@string/shared_string_no" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |