blob: ff81e7a4c47e8883f6daaf262d1e6a7687683e2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/not_supported_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="32dp"
android:textAppearance="@android:style/TextAppearance.Material.Subhead" />
</ScrollView>
</layout>
|