2012-09-16 09:25:28 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/main"
|
2013-04-16 08:54:51 +00:00
|
|
|
android:orientation="vertical"
|
2012-09-16 09:25:28 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent" >
|
|
|
|
|
2013-05-28 09:34:00 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/loading_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center"
|
|
|
|
android:visibility="gone" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/loading_message"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
2012-09-16 09:25:28 +00:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/feeds_fragment"
|
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>
|