aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout-port/item_host.xml
diff options
context:
space:
mode:
authorKenny Root <kenny@the-b.org>2015-08-20 13:47:36 -0700
committerKenny Root <kenny@the-b.org>2015-08-20 13:47:36 -0700
commit717ead96315e6a94098c3acc8d57521c646a2cc2 (patch)
treebb6830edb5ca4fd523c04526ea205d8ff3767c68 /app/src/main/res/layout-port/item_host.xml
parent98979cf93c4f8ae6006ee50dde20a3a2cc83b6c9 (diff)
parentae8b6d36493fc3629afe997a9700d001d6594b60 (diff)
downloadconnectbot-717ead96315e6a94098c3acc8d57521c646a2cc2.tar.gz
connectbot-717ead96315e6a94098c3acc8d57521c646a2cc2.tar.bz2
connectbot-717ead96315e6a94098c3acc8d57521c646a2cc2.zip
Merge pull request #138 from kruton/xml-style
Update XML style and reformat all files with it
Diffstat (limited to 'app/src/main/res/layout-port/item_host.xml')
-rw-r--r--app/src/main/res/layout-port/item_host.xml20
1 files changed, 10 insertions, 10 deletions
diff --git a/app/src/main/res/layout-port/item_host.xml b/app/src/main/res/layout-port/item_host.xml
index 24d34ba..7ee7f0a 100644
--- a/app/src/main/res/layout-port/item_host.xml
+++ b/app/src/main/res/layout-port/item_host.xml
@@ -18,8 +18,8 @@
*/
-->
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@android:id/content"
+<RelativeLayout android:id="@android:id/content"
+ xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="10dip"
@@ -27,31 +27,31 @@
<ImageView
android:id="@android:id/icon"
- android:src="@drawable/connected"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
- android:paddingTop="5dip"
android:contentDescription="@string/image_description_connected"
+ android:paddingTop="5dip"
+ android:src="@drawable/connected"
/>
-
+
<TextView
- android:id="@android:id/text1"
+ android:id="@android:id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:ellipsize="end"
android:paddingRight="20dip"
android:singleLine="true"
- android:ellipsize="end"
android:textAppearance="?android:attr/textAppearanceLarge"
/>
<TextView
- android:id="@android:id/text2"
+ android:id="@android:id/text2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_below="@android:id/text1"
+ android:textAppearance="?android:attr/textAppearanceSmall"
/>
-
+
</RelativeLayout> \ No newline at end of file