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/usefulapps_activity.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/usefulapps_activity.xml')
| -rw-r--r-- | main/res/layout/usefulapps_activity.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/main/res/layout/usefulapps_activity.xml b/main/res/layout/usefulapps_activity.xml new file mode 100644 index 0000000..84bcf39 --- /dev/null +++ b/main/res/layout/usefulapps_activity.xml @@ -0,0 +1,23 @@ +<?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="fill_parent" + android:background="?background_color" + android:orientation="vertical" > + + <include layout="@layout/actionbar" /> + + <ListView + android:id="@+id/apps_list" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:cacheColorHint="?background_color" + android:divider="?background_color" + android:fastScrollEnabled="true" + android:footerDividersEnabled="false" + android:headerDividersEnabled="false" + android:listSelector="?background_color" + android:padding="4dip" > + </ListView> + +</LinearLayout>
\ No newline at end of file |
