选择特定下拉项时出现警报对话框

时间:2019-05-31 12:02:23

标签: android android-spinner

我已经选择了Spinner个城市。我在那里显示了一些特定的城市(在我的项目中指定),并且dropDownList中的最后一个项目是“其他”。我希望当用户选择“其他”时,或者出现一个带有TextInputLayout的对话框,要求用户输入城市名称,或者以其他任何方式。我只希望在选择其他人之后,要求用户输入城市,并且该城市将显示在微调框上。我是Android Studio的新手,似乎无法解决问题。

这是我到目前为止所做的。 我的activity_main.xml

中的微调器布局
<Spinner
    android:id="@+id/citySpinner"
    android:layout_width="300dp"
    android:layout_height="wrap_content"
    android:layout_marginBottom="16dp"
    android:spinnerMode="dialog" />

用于设置微调框中显示的所选文本样式的布局

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fontFamily="@font/ubuntu_bold"
    android:textColor="@color/Blue"
    android:textSize="16sp">
</TextView>

下拉菜单的布局

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:textColor="@color/Blue"
    android:paddingBottom="12dp"
    android:paddingTop="12dp"
    android:paddingStart="12dp"
    android:fontFamily="@font/ubuntu_medium">
</TextView>

和我的主要活动

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Spinner citySpinner = findViewById(R.id.citySpinner);
        List<String> cityList = new ArrayList<String>();
        cityList.add("Select a City");
        cityList.add("Banglore");
        cityList.add("Pune");
        cityList.add("Mumbai");
        cityList.add("Noida/Ghaziabad");
        cityList.add("Other");

        ArrayAdapter<String> cityDataAdapter = new ArrayAdapter<String>(this, 
        R.layout.city_spinner_selected_item, cityList);  
        cityDataAdapter.setDropDownViewResource(R.layout.support_simple_
        spinner_dropdown_item);
        cityDataAdapter.setDropDownViewResource(R.layout.register_dropd
        own_item);
        citySpinner.setAdapter(cityDataAdapter);

}

现在,如何在其他人上设置警报对话框?

1 个答案:

答案 0 :(得分:0)

首先创建一个OnItemSelectedListener,然后单击{em> others 即可使用position == 5

citySpinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {

@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
    if(position == 5){
        //show your dialog
    }
}

});

然后您创建一个带有EditText的对话框。

AlertDialog.Builder alert = new AlertDialog.Builder(MainActivity.this);
alert.setTitle("Enter City");

EditText editText = new EditText(this);
alert.setView(editText);


alert.setPositiveButton("Enter", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface dialog, int whichButton) {
       //Here you set the text of your EditText to your TextView
       yourtextview.setText(editText.getText().toString());
    }
});

alert.show();

然后,您只需将其放入OnItemSelectedListener中即可。

 citySpinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {

@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
    if(position == 5){


AlertDialog.Builder alert = new AlertDialog.Builder(MainActivity.this);
    alert.setTitle("Enter City");

    EditText editText = new EditText(this);
    alert.setView(editText);


    alert.setPositiveButton("Enter", new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int whichButton) {
           //Here you set the text of your EditText to your TextView
           yourtextview.setText(editText.getText().toString());
        }
    });

    alert.show();
    }
    }

    });