summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-12-02 21:10:04 +0400
committerAndrew Dolgov <[email protected]>2012-12-02 21:10:04 +0400
commitbafb56c06f90725c6b06f856222ed72034f65404 (patch)
treea57121023ab81ad0d47723be248ac1de71cdf412 /res
parente4b3900ac4b2e343e5a3356754046770bb75be5e (diff)
prevent long filename wrapping
Diffstat (limited to 'res')
-rw-r--r--res/layout-sw600dp/comics_grid_row.xml4
-rw-r--r--res/layout/comics_grid_row.xml2
-rw-r--r--res/layout/comics_list_row.xml2
3 files changed, 7 insertions, 1 deletions
diff --git a/res/layout-sw600dp/comics_grid_row.xml b/res/layout-sw600dp/comics_grid_row.xml
index 0b1a666..2e6d183 100644
--- a/res/layout-sw600dp/comics_grid_row.xml
+++ b/res/layout-sw600dp/comics_grid_row.xml
@@ -26,12 +26,14 @@
android:layout_weight="0"
android:gravity="center_horizontal"
android:orientation="vertical" >
-
+
<TextView
android:id="@+id/file_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
+ android:ellipsize="middle"
+ android:singleLine="true"
android:text="Comic_1980.cbz" />
<ProgressBar
diff --git a/res/layout/comics_grid_row.xml b/res/layout/comics_grid_row.xml
index 748d123..cadd2c7 100644
--- a/res/layout/comics_grid_row.xml
+++ b/res/layout/comics_grid_row.xml
@@ -32,6 +32,8 @@
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Comic_1980.cbz"
+ android:ellipsize="middle"
+ android:singleLine="true"
android:textSize="11dp" />
<ProgressBar
diff --git a/res/layout/comics_list_row.xml b/res/layout/comics_list_row.xml
index 1b83d27..f1730bb 100644
--- a/res/layout/comics_list_row.xml
+++ b/res/layout/comics_list_row.xml
@@ -35,6 +35,8 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
+ android:ellipsize="middle"
+ android:singleLine="true"
android:text="Comic_1980.cbz" />
<TextView