diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2013-06-09 17:42:00 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2013-06-09 17:42:00 +0200 |
| commit | 6c346e0e7ba72dcfae10b2b494f964857c9a14d4 (patch) | |
| tree | a6abf489855dab209f577206d32b36637fbe157b /main/res/layout/logcache_trackable_item.xml | |
| parent | afe3dd26ad820b53e7b1db94cade9a104d2ea063 (diff) | |
| download | cgeo-6c346e0e7ba72dcfae10b2b494f964857c9a14d4.zip cgeo-6c346e0e7ba72dcfae10b2b494f964857c9a14d4.tar.gz cgeo-6c346e0e7ba72dcfae10b2b494f964857c9a14d4.tar.bz2 | |
refactoring: use activity names for layouts
Diffstat (limited to 'main/res/layout/logcache_trackable_item.xml')
| -rw-r--r-- | main/res/layout/logcache_trackable_item.xml | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/main/res/layout/logcache_trackable_item.xml b/main/res/layout/logcache_trackable_item.xml new file mode 100644 index 0000000..1eab116 --- /dev/null +++ b/main/res/layout/logcache_trackable_item.xml @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_marginBottom="5dip" + android:orientation="horizontal" + android:paddingBottom="10dip" + android:paddingLeft="10dip" + android:paddingRight="10dip" > + + <LinearLayout + android:id="@+id/info" + android:layout_width="0dip" + android:layout_height="wrap_content" + android:layout_weight="2" + android:orientation="vertical" > + + <TextView + android:id="@+id/name" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_gravity="left" + android:ellipsize="marquee" + android:gravity="left" + android:lines="1" + android:scrollHorizontally="true" + android:singleLine="true" + android:textColor="?text_color" + android:textIsSelectable="false" + android:textSize="14sp" /> + + <TextView + android:id="@+id/trackcode" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_gravity="left" + android:ellipsize="marquee" + android:gravity="left" + android:lines="1" + android:scrollHorizontally="true" + android:singleLine="true" + android:textColor="?text_color" + android:textIsSelectable="false" + android:textSize="14sp" /> + </LinearLayout> + + <TextView + android:id="@+id/action" + android:layout_width="0dip" + android:layout_height="wrap_content" + android:layout_gravity="right" + android:layout_weight="1" + android:ellipsize="marquee" + android:gravity="right" + android:lines="1" + android:scrollHorizontally="true" + android:singleLine="true" + android:textColor="?text_color" + android:textIsSelectable="false" + android:textSize="14sp" /> + +</LinearLayout>
\ No newline at end of file |
