Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fragment_detail_permissions.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e974d6fb90ed4ed4ccd2c145579a318f6da64922 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
  <androidx.recyclerview.widget.RecyclerView
    android:id="@+id/rv__permissions"
    android:layout_width="@dimen/permissions_details_width"
    android:layout_height="match_parent"
    android:layout_centerInParent="true"
    android:layout_above="@+id/btn_frame"/>
  <RelativeLayout
    android:id="@id/btn_frame"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="@dimen/margin_double_plus"
    android:layout_alignParentBottom="true"
    android:paddingTop="@dimen/margin_quarter_plus"
    android:paddingBottom="@dimen/margin_quarter_plus"
    android:paddingRight="@dimen/margin_half"
    android:paddingLeft="@dimen/margin_half"
    android:background="?accentButtonBackground"
    android:gravity="center_vertical">
    <TextView
      android:id="@+id/btn__back"
      android:layout_width="wrap_content"
      android:layout_height="match_parent"
      android:paddingLeft="@dimen/margin_half"
      android:paddingRight="@dimen/margin_half"
      android:textAppearance="@style/MwmTextAppearance.Button"
      android:textColor="?accentButtonTextColor"
      android:fontFamily="@string/robotoMedium"
      android:text="@string/back"
      android:gravity="center_vertical"
      android:background="?clickableBackground"
      tools:targetApi="jelly_bean"/>
    <TextView
      android:id="@+id/btn__continue"
      android:layout_width="wrap_content"
      android:layout_height="match_parent"
      android:paddingLeft="@dimen/margin_half"
      android:paddingRight="@dimen/margin_half"
      android:textAppearance="@style/MwmTextAppearance.Button"
      android:textColor="?accentButtonTextColor"
      android:fontFamily="@string/robotoMedium"
      android:text="@string/continue_download"
      android:gravity="center_vertical"
      android:layout_alignParentEnd="true"
      android:layout_alignParentRight="true"
      android:background="?clickableBackground"
      tools:targetApi="jelly_bean"/>
  </RelativeLayout>
</RelativeLayout>