summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-11-25 22:04:11 +0300
committerAndrew Dolgov <[email protected]>2011-11-25 22:04:11 +0300
commit362377621481e10fde1ec4e65d434bb4d89b96a9 (patch)
tree95eb14d2d89656d4e2a6cd41c6090ec05418ea7d
parenta0753dd5dfa182d044826efe926fa1efa8a0dfa0 (diff)
remove hardcoded 300dp width of feeds pane
-rw-r--r--AndroidManifest.xml4
-rw-r--r--res/layout/main.xml2
2 files changed, 3 insertions, 3 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 5fd7505c..bed07a1e 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.fox.ttrss"
- android:versionCode="2"
- android:versionName="0.1.1">
+ android:versionCode="3"
+ android:versionName="0.1.2">
<uses-sdk android:minSdkVersion="10" />
<supports-screens android:smallScreens="false" android:normalScreens="false" />
diff --git a/res/layout/main.xml b/res/layout/main.xml
index 9b327d8a..9973a225 100644
--- a/res/layout/main.xml
+++ b/res/layout/main.xml
@@ -6,7 +6,7 @@
<TextView android:textAppearance="?android:attr/textAppearanceLarge" android:text="@string/loading_message" android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/loading_message"></TextView>
</LinearLayout>
<LinearLayout android:layout_height="fill_parent" android:orientation="horizontal" android:id="@+id/main" android:layout_width="fill_parent">
- <FrameLayout android:layout_height="match_parent" android:layout_width="300dp" android:layout_weight="0" android:id="@+id/feeds_fragment"></FrameLayout>
+ <FrameLayout android:layout_height="match_parent" android:layout_width="0dp" android:layout_weight="0.3" android:id="@+id/feeds_fragment"></FrameLayout>
<FrameLayout android:layout_height="match_parent" android:layout_width="0dp" android:layout_weight="0.5" android:id="@+id/headlines_fragment"></FrameLayout>
<FrameLayout android:layout_height="match_parent" android:layout_width="0dp" android:layout_weight="0.5" android:id="@+id/article_fragment"></FrameLayout>
</LinearLayout>