diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2012-12-23 11:09:05 +0100 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2012-12-23 11:09:05 +0100 |
commit | 2f86f4f4ae180ee64dfb3335d37ef85426acaa89 (patch) | |
tree | 415865793cead87e060ce1ba0ac18c169269c1ae /res/layout | |
parent | 8726ea18c07e57d9cb3fd94acb5ee0c34149d305 (diff) | |
download | AntennaPod-2f86f4f4ae180ee64dfb3335d37ef85426acaa89.zip |
Implemented directory navigation
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/directory_chooser.xml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/res/layout/directory_chooser.xml b/res/layout/directory_chooser.xml index cf53962ef..842e5d458 100644 --- a/res/layout/directory_chooser.xml +++ b/res/layout/directory_chooser.xml @@ -38,8 +38,8 @@ android:layout_height="60dp" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" - android:background="@drawable/borderless_button" - android:src="@attr/navigation_up" /> + android:background="?attr/borderless_button" + android:src="?attr/navigation_up" /> <TextView android:id="@+id/txtvSelectedFolderLabel" @@ -56,10 +56,15 @@ <TextView android:id="@+id/txtvSelectedFolder" + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_alignParentRight="true" android:layout_below="@id/txtvSelectedFolderLabel" android:layout_margin="8dp" android:layout_toRightOf="@id/butNavUp" - android:ellipsize="middle" /> + android:ellipsize="start" + android:scrollHorizontally="true" + android:singleLine="true" /> <View android:id="@+id/divider" |