2012-06-19 10:18:00 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-01-17 09:54:52 +00:00
|
|
|
android:id="@+id/main"
|
2011-11-30 10:43:02 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent" >
|
2012-06-19 10:18:00 +00:00
|
|
|
|
2011-11-30 10:43:02 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/loading_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2012-01-17 15:43:11 +00:00
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical" >
|
2011-11-30 10:43:02 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/loading_message"
|
2012-01-17 15:43:11 +00:00
|
|
|
android:layout_width="match_parent"
|
2011-11-30 10:43:02 +00:00
|
|
|
android:layout_height="wrap_content"
|
2012-01-17 15:43:11 +00:00
|
|
|
android:gravity="center_horizontal"
|
2012-01-17 09:54:52 +00:00
|
|
|
android:text="@string/loading_message" />
|
2011-11-30 10:43:02 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
2012-01-17 09:54:52 +00:00
|
|
|
<FrameLayout
|
2012-06-19 15:51:47 +00:00
|
|
|
android:id="@+id/fragment_container"
|
2012-01-17 09:54:52 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" >
|
|
|
|
</FrameLayout>
|
2011-11-30 10:43:02 +00:00
|
|
|
|
2012-06-19 10:18:00 +00:00
|
|
|
</LinearLayout>
|