diff options
| author | Bananeweizen <Bananeweizen@gmx.de> | 2012-12-23 22:35:26 +0100 |
|---|---|---|
| committer | Bananeweizen <Bananeweizen@gmx.de> | 2012-12-23 22:35:26 +0100 |
| commit | f9091d6a2c31f9f08ca9f67f8498ec7598ae95e9 (patch) | |
| tree | c40686232fef260a59c080c3e2816fe00af19916 /main/res/layout | |
| parent | 774a5ab29a89c6e58177427befaa1e4031c6154e (diff) | |
| download | cgeo-f9091d6a2c31f9f08ca9f67f8498ec7598ae95e9.zip cgeo-f9091d6a2c31f9f08ca9f67f8498ec7598ae95e9.tar.gz cgeo-f9091d6a2c31f9f08ca9f67f8498ec7598ae95e9.tar.bz2 | |
refactoring: convert trackable log view to real list
Diffstat (limited to 'main/res/layout')
| -rw-r--r-- | main/res/layout/trackable_logs_view.xml | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/main/res/layout/trackable_logs_view.xml b/main/res/layout/trackable_logs_view.xml index 697afad..0f89c31 100644 --- a/main/res/layout/trackable_logs_view.xml +++ b/main/res/layout/trackable_logs_view.xml @@ -1,15 +1,13 @@ <?xml version="1.0" encoding="utf-8"?> -<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" +<ListView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" - android:orientation="vertical" - android:padding="4dip"> + android:cacheColorHint="?background_color" + android:divider="?background_color" + android:fastScrollEnabled="true" + android:focusable="false" + android:footerDividersEnabled="false" + android:headerDividersEnabled="false" + android:listSelector="?background_color" > - <LinearLayout - android:id="@+id/log_list" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical" > - </LinearLayout> - -</ScrollView>
\ No newline at end of file +</ListView>
\ No newline at end of file |
