summaryrefslogtreecommitdiff
path: root/res/layout-xlarge
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-06-22 00:35:53 +0400
committerAndrew Dolgov <[email protected]>2012-06-22 00:35:53 +0400
commitbc7e851b9a11655f9cbca91d301781c238c4d67e (patch)
tree88d0438cd65bafa3ae752c5cdbebd5e4b2e0d4d9 /res/layout-xlarge
parent15e0e4ec0da3cf1b029feb57d2ce62f4129eaea4 (diff)
add shadows to light theme, misc layout/theme tweaks
Diffstat (limited to 'res/layout-xlarge')
-rw-r--r--res/layout-xlarge/headlines_row.xml8
-rw-r--r--res/layout-xlarge/headlines_row_selected.xml7
-rw-r--r--res/layout-xlarge/headlines_row_unread.xml9
-rw-r--r--res/layout-xlarge/main.xml45
4 files changed, 25 insertions, 44 deletions
diff --git a/res/layout-xlarge/headlines_row.xml b/res/layout-xlarge/headlines_row.xml
index 73e6b941..9a311ef9 100644
--- a/res/layout-xlarge/headlines_row.xml
+++ b/res/layout-xlarge/headlines_row.xml
@@ -14,14 +14,6 @@
android:gravity="center_vertical"
android:orientation="horizontal" >
-
- <ImageView
- android:id="@+id/headlines_separator"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:background="?headlineSeparatorNormal"
- android:paddingRight="4dip" />
-
<CheckBox
android:id="@+id/selected"
android:layout_width="wrap_content"
diff --git a/res/layout-xlarge/headlines_row_selected.xml b/res/layout-xlarge/headlines_row_selected.xml
index 00171f0d..80dfaac2 100644
--- a/res/layout-xlarge/headlines_row_selected.xml
+++ b/res/layout-xlarge/headlines_row_selected.xml
@@ -13,13 +13,6 @@
android:gravity="center_vertical"
android:orientation="horizontal" >
- <ImageView
- android:id="@+id/headlines_separator"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:background="?headlineSeparatorSelected"
- android:paddingRight="4dip" />
-
<CheckBox
android:id="@+id/selected"
android:layout_width="wrap_content"
diff --git a/res/layout-xlarge/headlines_row_unread.xml b/res/layout-xlarge/headlines_row_unread.xml
index 1ba714ab..23f648a2 100644
--- a/res/layout-xlarge/headlines_row_unread.xml
+++ b/res/layout-xlarge/headlines_row_unread.xml
@@ -13,13 +13,6 @@
android:gravity="center_vertical"
android:orientation="horizontal" >
- <ImageView
- android:id="@+id/headlines_separator"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:background="?headlineSeparatorUnread"
- android:paddingRight="4dip" />
-
<CheckBox
android:id="@+id/selected"
android:layout_width="wrap_content"
@@ -43,7 +36,7 @@
android:ellipsize="end"
android:singleLine="true"
android:text="{Title...}"
- android:textColor="?headlineTextColor"
+ android:textColor="?headlineUnreadTextColor"
android:textSize="16sp" >
</TextView>
diff --git a/res/layout-xlarge/main.xml b/res/layout-xlarge/main.xml
index 283e35ae..3278ff22 100644
--- a/res/layout-xlarge/main.xml
+++ b/res/layout-xlarge/main.xml
@@ -5,47 +5,50 @@
>
<LinearLayout
- android:id="@+id/loading_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- 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>
-
- <LinearLayout
- android:orientation="horizontal"
android:id="@+id/fragment_container"
android:layout_width="match_parent"
- android:layout_height="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: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: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:layout_weight="0.6"
+ android:background="?articleHeader" >
</FrameLayout>
</LinearLayout>
+ <LinearLayout
+ android:id="@+id/loading_container"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ 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