2013-12-11 Miguel de Dios <miguel.dedios@artica.es>
* mobile/src/pandroid/agent/Setup.java, mobile/res/layout/simple_spinner_item.xml, tablet/src/pandroid/agent/Setup.java, tablet/res/layout/simple_spinner_item.xml: changed the color of dropbox list for the check process. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9211 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
9db4e7ea67
commit
e19f2260fe
|
@ -1,3 +1,11 @@
|
|||
2013-12-11 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* mobile/src/pandroid/agent/Setup.java,
|
||||
mobile/res/layout/simple_spinner_item.xml,
|
||||
tablet/src/pandroid/agent/Setup.java,
|
||||
tablet/res/layout/simple_spinner_item.xml: changed the color of
|
||||
dropbox list for the check process.
|
||||
|
||||
2013-12-11 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* tablet/AndroidManifest.xml, tablet/src/pandroid/agent/Core.java:
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@android:id/text1"
|
||||
style="?android:attr/spinnerDropDownItemStyle"
|
||||
android:singleLine="true"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:textColor="#ffffff"
|
||||
android:ellipsize="marquee" />
|
|
@ -251,6 +251,9 @@ public class Setup extends Activity {
|
|||
.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
|
||||
combo.setAdapter(spinnerArrayAdapter);
|
||||
|
||||
spinnerArrayAdapter
|
||||
.setDropDownViewResource(R.layout.simple_spinner_item);
|
||||
|
||||
combo.setSelection(position);
|
||||
|
||||
ProgressBar progressBar = (ProgressBar) findViewById(R.id.loading_task_anim);
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@android:id/text1"
|
||||
style="?android:attr/spinnerDropDownItemStyle"
|
||||
android:singleLine="true"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:textColor="#ffffff"
|
||||
android:ellipsize="marquee" />
|
|
@ -245,6 +245,10 @@ public class Setup extends Activity {
|
|||
ArrayAdapter<String> spinnerArrayAdapter = new ArrayAdapter<String>(getApplicationContext(),
|
||||
R.layout.spinner, listProcessHuman);
|
||||
combo.setAdapter(spinnerArrayAdapter);
|
||||
|
||||
spinnerArrayAdapter
|
||||
.setDropDownViewResource(R.layout.simple_spinner_item);
|
||||
|
||||
|
||||
combo.setSelection(position);
|
||||
|
||||
|
|
Loading…
Reference in New Issue