旋转器的外观

时间:2011-02-24 18:30:44

标签: java android

我想我的微调器就像在picture.i可以做到如果我按照android.developers示例,但在我的应用程序中,它必须从java文件而不是字符串中获取微调器项目。 xml.this是我的代码(我的代码在照片中创建了一个微调器,但是当微调器关闭时,在第一个微调器项目旁边有radiobutton。我希望这个收音机消失)

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

当旋转器打开时:

现在:

enter image description here

我想成为:

enter image description here

1 个答案:

答案 0 :(得分:1)

那个看起来像AlertDialog

enter image description here

编辑:

好的,经过简短的研究后,我在API示例中找到了一些微调器示例。它们看起来像这样:

enter image description here

您可以找到code here