我需要创建一个只有三个值的下拉列表。我已经使用微调器完成了这项工作。但它看起来像这样
但我正在尝试像这样创建
因此,当单击它时,它需要显示正常微调器等值。
我尝试使用样式并将选择器设置为背景,但没有任何效果,我想到了自定义微调器,但没有得到任何有用的东西。
更新
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Spinner
android:id="@+id/spinner1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:entries="@array/spinner_consigntype"
android:prompt="@string/spinner_consign" />
</LinearLayout>
Activity_Test.Java
package com.mkyong.android;
import android.app.Activity;
import android.os.Bundle;
public class Activity_Test extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_activity__test);
addListenerOnSpinnerItemSelection();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity__test, menu);
return true;
}
public void addListenerOnSpinnerItemSelection(){
Spinner spinner1 = (Spinner) findViewById(R.id.spinner1);
spinner1.setOnItemSelectedListener(new CustomOnItemSelectedListener());
}
}
听众
public class CustomOnItemSelectedListener implements OnItemSelectedListener {
public void onItemSelected(AdapterView<?> parent, View view, int pos,
long id) {
Toast.makeText(parent.getContext(),
"OnItemSelectedListener : " + parent.getItemAtPosition(pos).toString(),
Toast.LENGTH_SHORT).show();
}
@Override
public void onNothingSelected(AdapterView<?> arg0) {
// TODO Auto-generated method stub
}
}
就我而言,我得到的输出就像第一张图片一样。但是使用下载的代码,它会将输出显示为第二张图像。