diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2012-09-01 22:22:13 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2012-09-01 22:22:13 +0400 |
| commit | b826481001889868a57fb37b80fcfd7b109ab1a8 (patch) | |
| tree | d742b01a01b820ca7e8fd2675f35d4a1de1c27dd /res/layout-sw768dp/main.xml | |
| parent | 77352728e7085bf9883c2c7d94501bce1ab8e4cf (diff) | |
properly detect portrait orientation
move to ICS style of naming resources for various dpi
bump version
Diffstat (limited to 'res/layout-sw768dp/main.xml')
| -rw-r--r-- | res/layout-sw768dp/main.xml | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/res/layout-sw768dp/main.xml b/res/layout-sw768dp/main.xml new file mode 100644 index 00000000..9df4e048 --- /dev/null +++ b/res/layout-sw768dp/main.xml @@ -0,0 +1,55 @@ +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/main" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + > + + <LinearLayout + android:id="@+id/fragment_container" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="horizontal" > + + <FrameLayout + android:id="@+id/feeds_fragment" + android:layout_width="0dp" + android:layout_height="match_parent" + android:layout_weight="0.3" + android:background="?feedlistBackground" > + </FrameLayout> + + <FrameLayout + android:id="@+id/headlines_fragment" + android:layout_width="0dp" + android:layout_height="match_parent" + android:layout_weight="0.4" + android:background="?headlinesBackground" > + </FrameLayout> + + <FrameLayout + android:id="@+id/article_fragment" + android:layout_width="0dp" + android:layout_height="match_parent" + android:layout_weight="0.6" + android:background="?articleBackground" > + </FrameLayout> + </LinearLayout> + + <LinearLayout + android:id="@+id/loading_container" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:background="?loadingBackground" + 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" + android:textAppearance="?android:attr/textAppearanceLarge" /> + </LinearLayout> + +</FrameLayout>
\ No newline at end of file |