15

アレイ アダプタを使用してアプライアンスを追加すると、アプライアンス名で自動的に更新されるスピナーを作成しました。スピナーで OnItemSelected メソッドを作成したので、スピナー内の名前の 1 つが選択されると、新しいウィンドウが表示されます。ただし、OnItemSelected はアクティビティの開始時にリストの最初の項目を自動的に選択するため、ユーザーは新しいウィンドウが表示されるまで実際に項目を選択する機会がありません。

コードは次のとおりです。

public void onItemSelected(AdapterView<?> arg0, View arg1, int arg2,
        long arg3) {
    // TODO Auto-generated method stub
    startActivity(new Intent("com.lukeorpin.theappliancekeeper.APPLIANCESELECTED"));
    }

public void onNothingSelected(AdapterView<?> arg0) {
    // TODO Auto-generated method stub

リストの最初の項目が自動的に選択されない方法を知っている人はいますか?

スピナーの残りのコードは次のとおりです。

ArrayAdapter<String> appliancenameadapter = new ArrayAdapter<String>(this,
            android.R.layout.simple_spinner_item, ApplianceNames); //Sets up an array adapter containing the values of the ApplianceNames string array
    applianceName = (Spinner) findViewById(R.id.spinner_name); //Gives the spinner in the xml layout a variable name
    applianceName.setAdapter(appliancenameadapter); //Adds the contents of the array adapter into the spinner

    applianceName.setOnItemSelectedListener(this);
4

4 に答える 4

24

リスナーのメソッドへの最初の呼び出しを回避しようとしている場合onItemSelected()は、別のオプションを使用post()して、ビューのメッセージキューを利用することもできます。スピナーがリスナーを初めてチェックするときは、まだ設定されていません。

// Set initial selection
spinner.setSelection(position);

// Post to avoid initial invocation
spinner.post(new Runnable() {
  @Override public void run() {
    spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
      @Override
      public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
        // Only called when the user changes the selection
      }

      @Override
      public void onNothingSelected(AdapterView<?> parent) {
      }
    });
  }
});
于 2013-02-19T17:07:20.270 に答える
9

リストの最初の項目が自動的に選択されない方法を知っている人はいますか?

には常に選択がありSpinner、それを変更することはできません。

SpinnerIMHO、アクティビティの開始をトリガーするためにa を使用しないでください。

そうは言っても、booleanこれが最初の選択イベントであるかどうかを追跡するために a を使用し、そうである場合は無視することができます。

于 2012-04-12T23:07:20.313 に答える
0

変数 isSpinnerInitial を宣言し、Make a Selection をデフォルトの選択にします

スピナータグビュー.setSelection(-1); .Net やその他の言語で行うように、-1 として選択したり、すべてを選択解除したりしません。したがって、その行は無視できます。

testStringArrayListinside.add("Make a Selection");
ADD this line so that this is selected by default and user never selects it 

testStringArrayList = (ArrayList<String>) ClinqLinX.get("Tag");
                boolean added = false;
             testStringArrayListinside.add("Make a Selection");
                for (String s : testStringArrayList) {
                    if (s != null || s != "") {
                        String[] results = s.split(","); // split on commas

                        for (String string : results) {

                            testStringArrayListinside.add(string);
                            Toast.makeText(getContext(), string, Toast.LENGTH_SHORT).show();
                            added = true;
                        }
                    }

                }
                if (added == false) {
                    testStringArrayListinside.add("Not tagged details found");
                }

                spinnertaggeview.refreshDrawableState();

            }

            // Adapter: You need three parameters 'the context, id of the layout (it will be where the data is shown),
            // and the array that contains the data
            if (testStringArrayListinside.size() > 0) {
                adapter = new ArrayAdapter<String>(this.getContext(),android.R.layout.select_dialog_singlechoice, testStringArrayListinside);
                adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
                // Here, you set the data in your ListView
                spinnertaggeview.setAdapter(adapter);
                 isSpinnerInitial = true;

                spinnertaggeview.setSelection(-1);
                spinnertaggeview.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {

                    @Override
                    public void onItemSelected(AdapterView<?> arg0, View arg1,
                                               int arg2, long arg3) {
                        if (isSpinnerInitial){

                            isSpinnerInitial = false;

                            return;}
                        else{
                        TextView tv = (TextView) arg1;
                        String spinner_value = tv.getText().toString();
                        if (spinner_value.length() == 0) {
                            spinner_value = "Nothing";
                        }
                        String strusername = spinner_value;//As you are using Default String Adapter
                        Toast.makeText(getContext(), strusername, Toast.LENGTH_SHORT).show();
                        Intent intent = new Intent(spinnertaggeview.getContext(), Userdetails.class);
                        intent.putExtra("Username", strusername);
                        spinnertaggeview.getContext().startActivity(intent);}

                    }
于 2015-08-24T21:51:03.763 に答える