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

fragment_bookmarks_catalog.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2da1296a8526c3d7311c7eb854b37c5307bbaa84 (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
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_height="match_parent"
  android:layout_width="match_parent"
  xmlns:app="http://schemas.android.com/apk/res-auto">
  <WebView
    android:id="@+id/webview"
    android:visibility="gone"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
  </WebView>

  <ProgressBar
    android:id="@+id/progress"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    android:minWidth="@dimen/search_progress_size"
    android:minHeight="@dimen/search_progress_size"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

  <Button
    android:id="@+id/retry_btn"
    android:layout_marginLeft="@dimen/margin_double"
    android:layout_marginRight="@dimen/margin_double"
    android:visibility="gone"
    style="@style/MwmWidget.Button.Primary"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    android:text="@string/downloader_retry"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>
</android.support.constraint.ConstraintLayout>