2011-02-24 79 views
0

我希望我的微調如圖片中所示。如果我遵循android.developers示例,但在我的應用程序中,它必須從java文件獲取微調項,而不是從strings.xml.this是我的代碼(我的代碼創建了一個微調,如照片,但有單選按鈕,當微調關閉時,旁邊item.i希望這個電臺消失第一微調)spinner的外觀

array_spinner=new String[4]; 
array_spinner[0]="a"; 
array_spinner[1]="b"; 
array_spinner[2]="c"; 
array_spinner[3]="d"; 

Spinner s = (Spinner) findViewById(R.id.spinner); 
ArrayAdapter adapter = new ArrayAdapter(this,android.R.layout.simple_spinner_item, array_spinner); 
s.setAdapter(adapter); 

enter image description here

當SPINNER是開放的:

現在:

enter image description here

我想是:

enter image description here

回答

1

這一個看起來像一個AlertDialog

enter image description here

編輯:

好的,經過短時間的研究,我發現了API示例中的一些微調器示例。他們是這樣的:

enter image description here

您可以找到code here