diff options
author | Parménides GV <parmegv@sdf.org> | 2014-12-04 16:38:21 +0100 |
---|---|---|
committer | Parménides GV <parmegv@sdf.org> | 2014-12-04 16:38:21 +0100 |
commit | f9a200a7004b74cb2d64e37129e6234427c84c7d (patch) | |
tree | fdaa5e73c9f94a56d358299f30ac40a61bd4d912 /app/src/main/res | |
parent | 568e5b77e7e34e10e5585614f5587df29f45cfd9 (diff) |
Renderers and dagger, refactoring CW.
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/configuration_wizard_activity.xml | 6 | ||||
-rw-r--r-- | app/src/main/res/layout/provider_list_item.xml | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/app/src/main/res/layout/configuration_wizard_activity.xml b/app/src/main/res/layout/configuration_wizard_activity.xml index 49c4b2b9..a5bca1e9 100644 --- a/app/src/main/res/layout/configuration_wizard_activity.xml +++ b/app/src/main/res/layout/configuration_wizard_activity.xml @@ -5,6 +5,12 @@ android:layout_height="match_parent" tools:context=".ConfigurationWizard" > + <ListView + android:id="@+id/provider_list" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:drawSelectorOnTop="false" /> + <ProgressBar android:id="@+id/progressbar_configuration_wizard" style="?android:attr/progressBarStyleHorizontal" diff --git a/app/src/main/res/layout/provider_list_item.xml b/app/src/main/res/layout/provider_list_item.xml index 8746f6f8..68ba7e31 100644 --- a/app/src/main/res/layout/provider_list_item.xml +++ b/app/src/main/res/layout/provider_list_item.xml @@ -24,7 +24,7 @@ android:mode="twoLine" > - <TextView android:id="@android:id/text1" + <TextView android:id="@+id/provider_domain" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="?android:attr/listPreferredItemPaddingLeft" @@ -32,11 +32,11 @@ android:textAppearance="?android:attr/textAppearanceListItem" /> - <TextView android:id="@android:id/text2" + <TextView android:id="@+id/provider_name" android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_below="@android:id/text1" - android:layout_alignLeft="@android:id/text1" + android:layout_below="@id/provider_domain" + android:layout_alignLeft="@id/provider_domain" android:textAppearance="?android:attr/textAppearanceSmall" /> |