乾杯的答覆.....
沒有做我所需要的,但已成功如下解決我的問題..
首先,我創造的,而不是我的活動範圍內的數組, strings.xml中。
String[] NoCore_Array = new String [5];
{
NoCore_Array[0] = "1";
NoCore_Array[1] = "2";
NoCore_Array[2] = "3";
NoCore_Array[3] = "4";
NoCore_Array[4] = "5";
}
然後創建使用微調...
Spinner spnNoCore = (Spinner) findViewById(R.id.spinner_nocore);
然後創建的適配器,使用上述陣列....作爲適配器的
ArrayAdapter NoCoreAdapter = new ArrayAdapter(this,
android.R.layout.simple_spinner_item, NoCore_Array);
spnNoCore.setAdapter(NoCoreAdapter);
然後設置默認位置以下...
//Set Default Selection
spnNoCore.setSelection(1);
然後對行動微調代碼休息...
spnNoCore.setOnItemSelectedListener(new OnItemSelectedListener(){
public void onItemSelected(AdapterView<?> parent,
View view, int pos, long id) {
//Get item from spinner and store in string conductorSize........
NoCore = parent.getItemAtPosition(pos).toString();
if (NoCore.equals(NoCore1)) { CoreNo = 1 ; }
if (NoCore.equals(NoCore2)) { CoreNo = 2 ; }
if (NoCore.equals(NoCore3)) { CoreNo = 3 ; }
if (NoCore.equals(NoCore4)) { CoreNo = 4 ; }
if (NoCore.equals(NoCore5)) { CoreNo = 5 ; }
}
public void onNothingSelected(AdapterView parent) {
// Do nothing.
}
});
希望這可以幫助誰是有與微調 設置默認選擇相同問題的其他人。
但是,如果以這種方式完成對話框的佈局並不盡如人意, 單選按鈕丟失,只是看起來像文本選擇 ,並用線條分隔各個部分。
thanx男人,你不知道你剛剛救了我多少工作,我正在嘗試這麼多無用的解決方案,例如創建旋轉陣列 – 2012-10-25 11:23:16