2012-09-16 13:25:28 +04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/main"
|
2013-04-16 12:54:51 +04:00
|
|
|
android:orientation="vertical"
|
2012-09-16 13:25:28 +04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent" >
|
|
|
|
|
2013-05-28 13:34:00 +04: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 13:25:28 +04:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/feeds_fragment"
|
2012-12-31 03:14:01 +04:00
|
|
|
android:background="?smallScreenBackground"
|
2012-09-16 13:25:28 +04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" >
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|