tt-rss-android/res/layout/headlines.xml

28 lines
965 B
XML
Raw Normal View History

2012-09-16 09:25:28 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/headlines"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:id="@+id/loading_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical" >
<TextView
android:id="@+id/loading_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="@string/loading_message" />
</LinearLayout>
<FrameLayout
2012-09-16 15:25:47 +00:00
android:id="@+id/headlines_container"
2012-12-30 23:14:01 +00:00
android:background="?smallScreenBackground"
2012-09-16 09:25:28 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent" >
</FrameLayout>
</LinearLayout>