在Android中的微调显示默认值

i7uaboj4  于 2022-12-25  发布在  Android
关注(0)|答案(4)|浏览(109)

我想显示一个性别选择的下拉列表。我传递了一个字符串数组

String arr[]=new String[]{"male","female"};

但问题是显示默认选择的值为"male",我想显示"Gender"作为默认值。如果我在数组中的位置0传递“性别”,那么它也会在下拉列表中可见。我只想“性别”作为提示,但它不能显示在下拉列表中。
如何才能做到这一点?

vbopmzt1

vbopmzt11#

Spinner sp = (Spinner)findViewById(R.id.spinner); 
sp.setSelection(pos);

这里pos是整数(数组项位置)
数组如下所示,然后pos = 0;

String str[] = new String{"Select Gender","male", "female" };

然后在onItemSelected中

@Override
    public void onItemSelected(AdapterView<?> main, View view, int position,
            long Id) {

        if(position > 0){
          // get spinner value
        }else{
          // show toast select gender
        }

    }
dsf9zpds

dsf9zpds2#

我通过扩展ArrayAdapter和重写getView方法找到了一个解决方案。

import android.content.Context;
import android.support.annotation.NonNull;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.Spinner;
import android.widget.TextView;

/**
 * A SpinnerAdapter which does not show the value of the initial selection initially,
 * but an initialText.
 * To use the spinner with initial selection instead call notifyDataSetChanged().
 */
public class SpinnerAdapterWithInitialText<T> extends ArrayAdapter<T> {

    private Context context;
    private int resource;

    private boolean initialTextWasShown = false;
    private String initialText = "Please select";

    /**
     * Constructor
     *
     * @param context The current context.
     * @param resource The resource ID for a layout file containing a TextView to use when
     *                 instantiating views.
     * @param objects The objects to represent in the ListView.
     */
    public SpinnerAdapterWithInitialText(@NonNull Context context, int resource, @NonNull T[] objects) {
        super(context, resource, objects);
        this.context = context;
        this.resource = resource;
    }

    /**
     * Returns whether the user has selected a spinner item, or if still the initial text is shown.
     * @param spinner The spinner the SpinnerAdapterWithInitialText is assigned to.
     * @return true if the user has selected a spinner item, false if not.
     */
    public boolean selectionMade(Spinner spinner) {
        return !((TextView)spinner.getSelectedView()).getText().toString().equals(initialText);
    }

    /**
     * Returns a TextView with the initialText the first time getView is called.
     * So the Spinner has an initialText which does not represent the selected item.
     * To use the spinner with initial selection instead call notifyDataSetChanged(),
     * after assigning the SpinnerAdapterWithInitialText.
     */
    @Override
    public View getView(int position, View recycle, ViewGroup container) {
        if(initialTextWasShown) {
            return super.getView(position, recycle, container);
        } else {
            initialTextWasShown = true;
            LayoutInflater inflater = LayoutInflater.from(context);
            final View view = inflater.inflate(resource, container, false);

            ((TextView) view).setText(initialText);

            return view;
        }
    }
}

Android在初始化Spinner时所做的是在为T[] objects中的所有项目调用getView之前为选定项目调用getView。SpinnerAdapterWithInitialText返回TextView,其中initialText在第一次调用时,它调用super.getView,这是ArrayAdaptergetView方法,如果您正常使用Spinner,则调用ArrayAdapter方法。
若要确定用户是否选择了微调控制项,或者微调控制项是否仍显示initialText,请调用selectionMade并交出分配给适配器的微调控制项。

2nbm6dog

2nbm6dog3#

微调不支持提示,我建议你做一个自定义微调适配器。
检查此链接:https://stackoverflow.com/a/13878692/1725748

5t7ly7z5

5t7ly7z54#

请尝试以下内容:

<Spinner
    android:id="@+id/YourSpinnerId"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:prompt="Gender" />

相关问题