blob: b64f222068793fa1b7992a62be02eede8eb425cd (
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
|
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipe_refresh"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/profile"
android:layout_width="144dp"
android:layout_height="144dp"
android:layout_centerInParent="true"
android:layout_marginBottom="16dp"
android:contentDescription="@string/profile_picture"
android:scaleType="centerInside"
android:visibility="invisible" />
<android.support.v7.widget.AppCompatTextView
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/profile"
android:layout_centerHorizontal="true"
android:visibility="invisible" />
<com.pitchedapps.frost.web.LoginWebView
android:id="@+id/login_webview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="true"
android:focusableInTouchMode="true"
android:visibility="invisible" />
</RelativeLayout>
</android.support.v4.widget.SwipeRefreshLayout>
|