summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2014-11-02 00:05:53 +0400
committerAndrew Dolgov <[email protected]>2014-11-02 00:05:53 +0400
commiteda03125d98f3583b9cc0134e72e51b26897b81f (patch)
tree520bc1f7a9d3013b750ae60386d6897a685af553 /org.fox.ttrss/src/main
parente37fcb9ab3184d3b670595bb58b59882b1b9534b (diff)
tweak layouts for larger devices
Diffstat (limited to 'org.fox.ttrss/src/main')
-rw-r--r--org.fox.ttrss/src/main/AndroidManifest.xml2
-rw-r--r--org.fox.ttrss/src/main/res/layout-sw600dp-port/headlines_articles.xml2
-rw-r--r--org.fox.ttrss/src/main/res/layout-sw700dp-port/headlines_articles.xml36
3 files changed, 38 insertions, 2 deletions
diff --git a/org.fox.ttrss/src/main/AndroidManifest.xml b/org.fox.ttrss/src/main/AndroidManifest.xml
index 1ae63f74..313cf45e 100644
--- a/org.fox.ttrss/src/main/AndroidManifest.xml
+++ b/org.fox.ttrss/src/main/AndroidManifest.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.fox.ttrss"
- android:versionCode="257"
+ android:versionCode="258"
android:versionName="1.54" >
<uses-sdk
diff --git a/org.fox.ttrss/src/main/res/layout-sw600dp-port/headlines_articles.xml b/org.fox.ttrss/src/main/res/layout-sw600dp-port/headlines_articles.xml
index 02be7e49..2618730f 100644
--- a/org.fox.ttrss/src/main/res/layout-sw600dp-port/headlines_articles.xml
+++ b/org.fox.ttrss/src/main/res/layout-sw600dp-port/headlines_articles.xml
@@ -27,7 +27,7 @@
<FrameLayout
android:id="@+id/headlines_fragment"
android:layout_height="match_parent"
- android:layout_width="300dp"
+ android:layout_width="400dp"
android:layout_gravity="start"
android:background="?headlinesBackgroundSolid">
</FrameLayout>
diff --git a/org.fox.ttrss/src/main/res/layout-sw700dp-port/headlines_articles.xml b/org.fox.ttrss/src/main/res/layout-sw700dp-port/headlines_articles.xml
new file mode 100644
index 00000000..08d3c501
--- /dev/null
+++ b/org.fox.ttrss/src/main/res/layout-sw700dp-port/headlines_articles.xml
@@ -0,0 +1,36 @@
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/main"
+ android:fitsSystemWindows="true"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:orientation="vertical">
+
+ <FrameLayout
+ android:id="@+id/sw600dp_anchor"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:visibility="gone" >
+ </FrameLayout>
+
+ <android.support.v4.widget.DrawerLayout
+ android:id="@+id/headlines_drawer"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <FrameLayout
+ android:id="@+id/article_fragment"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background="?articleBackground">
+ </FrameLayout>
+
+ <FrameLayout
+ android:id="@+id/headlines_fragment"
+ android:layout_height="match_parent"
+ android:layout_width="500dp"
+ android:layout_gravity="start"
+ android:background="?headlinesBackgroundSolid">
+ </FrameLayout>
+ </android.support.v4.widget.DrawerLayout>
+
+</LinearLayout> \ No newline at end of file