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

fragment_ugc_routes.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4182aed8b402e798fc159e4fb403f06a8e5dc6ca (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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/main_area"
  android:orientation="vertical"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
  <LinearLayout
    android:id="@+id/progress_container"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <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"/>
    <TextView
      android:text="@string/ugc_route_tags_progress_msg"
      android:textAppearance="?android:attr/textAppearanceMedium"
      android:layout_gravity="center_horizontal"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"/>
  </LinearLayout>
  <LinearLayout
    android:id="@+id/tags_container"
    android:orientation="vertical"
    android:paddingLeft="@dimen/margin_base"
    android:paddingStart="@dimen/margin_base"
    android:paddingEnd="@dimen/margin_base"
    android:paddingRight="@dimen/margin_base"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
      android:id="@+id/ugc_route_tags_desc"
      android:text="@string/ugc_route_tags_desc"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:textAppearance="?android:attr/textAppearanceSmall"/>
    <include layout="@layout/list_divider"/>
    <android.support.v7.widget.RecyclerView
      android:id="@+id/recycler"
      android:overScrollMode="never"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"/>
  </LinearLayout>
</LinearLayout>