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

23 lines
1.9 KiB
XML
Raw Normal View History

2011-09-10 08:03:32 +00:00
<ViewFlipper xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
2011-09-10 08:03:32 +00:00
android:layout_height="fill_parent" android:id="@+id/main_flipper">
2011-11-23 10:55:05 +00:00
<FrameLayout android:layout_gravity="center_vertical" android:layout_width="match_parent" android:id="@+id/sync_splash" android:layout_height="match_parent">
<LinearLayout android:id="@+id/linearLayout1" android:gravity="center" android:layout_width="match_parent" android:layout_height="match_parent">
<ProgressBar android:layout_width="wrap_content" style="?android:attr/progressBarStyleLarge" android:id="@+id/loading_progress" android:layout_height="wrap_content"></ProgressBar>
<TextView android:layout_width="wrap_content" android:textAppearance="?android:attr/textAppearanceLarge" android:id="@+id/loading_message" android:text="@string/loading_message" android:layout_height="wrap_content"></TextView>
2011-09-10 08:03:32 +00:00
</LinearLayout>
</FrameLayout>
2011-11-23 10:55:05 +00:00
<LinearLayout android:id="@+id/main" android:layout_width="fill_parent" android:orientation="horizontal" android:layout_height="fill_parent">
<fragment android:id="@+id/feeds_fragment" android:name="org.fox.ttrss.FeedsFragment" android:layout_height="match_parent" android:layout_width="300dp">
<!-- Preview: layout=@layout/feeds_fragment -->
</fragment>
<fragment android:id="@+id/headlines_fragment" android:name="org.fox.ttrss.HeadlinesFragment" android:layout_height="match_parent" android:layout_width="wrap_content">
<!-- Preview: layout=@layout/headlines_fragment -->
</fragment>
<fragment android:id="@+id/article_fragment" android:name="org.fox.ttrss.ArticleFragment" android:layout_height="match_parent" android:layout_width="wrap_content">
<!-- Preview: layout=@layout/article_fragment -->
</fragment>
2011-09-08 11:28:38 +00:00
</LinearLayout>
2011-09-09 11:58:11 +00:00
2011-09-10 08:03:32 +00:00
</ViewFlipper>