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

item_discovery_expert_loading.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55598fdb3aabc5fe94b10ebea2cf4c7c98be914e (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
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:padding="@dimen/margin_quarter"
  android:clipToPadding="false">
  <androidx.cardview.widget.CardView
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:minHeight="@dimen/discovery_expert_item_min_height"
      android:orientation="vertical"
      android:gravity="center_horizontal">
      <ProgressBar
        android:id="@+id/progress"
        android:layout_width="@dimen/margin_base_plus"
        android:layout_height="@dimen/margin_base_plus"
        android:layout_marginTop="@dimen/margin_double_plus"/>
      <include layout="@layout/item_discovery_simple_message"/>
    </LinearLayout>
  </androidx.cardview.widget.CardView>
</FrameLayout>