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

fragment_ugc_routes_properties.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4a57b6ce03eb9b7e756db966243cd3947c878d8 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:fillViewport="true">
  <LinearLayout
    android:orientation="vertical"
    android:layout_marginTop="@dimen/margin_base"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <ProgressBar
      android:id="@+id/progress"
      android:minWidth="@dimen/search_progress_size"
      android:minHeight="@dimen/search_progress_size"
      android:paddingTop="@dimen/direction_frame_min_height"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center_horizontal"/>
    <LinearLayout
      android:id="@+id/properties_container"
      android:orientation="vertical"
      android:layout_width="match_parent"
      android:layout_height="wrap_content">
      <include layout="@layout/list_divider"/>
      <TextView
        android:text="@string/custom_props_desc"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:gravity="center"
        android:background="?cardBackground"
        android:paddingTop="@dimen/margin_base"
        android:paddingBottom="@dimen/margin_base"
        android:paddingLeft="@dimen/margin_base"
        android:paddingStart="@dimen/margin_base"
        android:paddingEnd="@dimen/margin_base"
        android:paddingRight="@dimen/margin_base"/>
      <LinearLayout
        android:id="@+id/btn_container"
        android:paddingTop="@dimen/margin_base"
        android:paddingBottom="@dimen/margin_base"
        android:background="?cardBackground"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <Button
          android:id="@+id/left_btn"
          android:layout_width="0dp"
          android:layout_weight="1"
          style="@style/MwmWidget.Button.Primary"
          android:layout_marginEnd="@dimen/margin_half"
          android:layout_marginStart="@dimen/margin_base"
          android:layout_marginLeft="@dimen/margin_base"
          android:layout_marginRight="@dimen/margin_half"/>
        <Button
          android:id="@+id/right_btn"
          android:layout_width="0dp"
          android:layout_weight="1"
          style="@style/MwmWidget.Button.Primary"
          android:layout_marginEnd="@dimen/margin_base"
          android:layout_marginRight="@dimen/margin_base"
          android:layout_marginStart="@dimen/margin_half"
          android:layout_marginLeft="@dimen/margin_half"/>
      </LinearLayout>
      <include layout="@layout/list_divider"/>
    </LinearLayout>
  </LinearLayout>
</androidx.core.widget.NestedScrollView>