<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/controls"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Wearipedia"
tools:deviceIds="wear">
<ProgressBar
android:id="@+id/progress"
android:layout_gravity="center"
android:layout_height="match_parent"
android:layout_margin="32dp"
android:layout_width="match_parent"
android:indeterminate="true"
/>
<ScrollView
android:id="@+id/content_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="gone">
<TextView
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="sans-serif-light"
android:padding="16dp"
android:textStyle="normal"
android:textSize="16sp"
/>
</ScrollView>
</FrameLayout>