0

アイテムを含むスピナーがあり、それらのアイテムの 1 つをクリックすると、別のアクティビティが開きます

MainActivity のレイアウトのスピナー

<Spinner
    android:id="@+id/spinner1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignRight="@+id/imageView1"
    android:entries="@array/spinner1"            
     />

strings.xml のスピナー

<string-array name="spinner1">
   <item>NEWS</item>
   <item>RESULTS</item>
   <item>CLASIFICATION</item>             
</string-array>

「RESULTS」を Results.java にリンクし、「CLASIFICATION」を Clasification.java にリンクします。どのコードをどこで使用すればよいですか? ありがとう

4

5 に答える 5

1
    youspinner.setOnItemSelectedListener(new OnItemSelectedListener() {

            @Override
            public void onItemSelected(AdapterView<?> parent, View arg1,
                int position, long arg3) {
    if(position == requiredposion)
        {
            Intent i = new Intent();
            i.setClass(CurrentActivity.this, NextActivity.class);
            startActivity(i);
        }

            }

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

            }
        });
于 2013-11-12T09:19:49.433 に答える
0

これを試して...

spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {

        @Override
        public void onItemSelected(AdapterView<?> parent, View view,
                int position, long id) {
            TextView textView = (TextView) view;
            String text = textView.getText().toString().toLowerCase(Locale.getDefault());
            text = Character.toUpperCase(text.charAt(0))+""+text.substring(1);
            try {
                Class<?> cls = Class.forName("yourPackageName."+text);
                Intent  intent = new Intent(SecondActivity.this, cls);
                startActivity(intent);
            } catch (Exception e) {
            }
        }

        @Override
        public void onNothingSelected(AdapterView<?> parent) {

        }
    });
于 2013-11-12T09:38:12.260 に答える
0

以下のコードを使用できます:-

Spinner s = (Spinner)findViewbyId(R.id.spinner1);
s.setOnItemSelectedListener(new OnItemSelectedListener() {

        @Override
        public void onItemSelected(AdapterView<?> arg0, View v,
                int pos, long arg3) {

            switch (pos) {
            case 0:
                  Intent intent = new Intent(MainActivity.this,News.class);
                      startActivity(intent);

                break;
            case 1:
                  //similar code here like above
                break;
            case 2:
                break;
            default:
                break;
            }
        }

        @Override
        public void onNothingSelected(AdapterView<?> arg0) {

        }
    });
于 2013-11-12T09:22:52.033 に答える
0

以下のようにしてみてください。

  spin.setOnItemSelectedListener(new OnItemSelectedListener() {

        @Override
        public void onItemSelected(AdapterView<?> arg0, View arg1,
                int arg2, long arg3) {
            System.err.println("**************" + arg2);

            switch (arg2) {
            case 0:
                 Intent i = new Intent();
                                i.setClass(CurrentActivity.this, NEWS.class);
                                 startActivity(i);
                break;
                               case 1:
                 Intent ir = new Intent();
                                ir.setClass(CurrentActivity.this, Results.class);
                                 startActivity(ir);
                break;
                               case 2:
                 Intent ic = new Intent();
                                ic.setClass(CurrentActivity.this, Clasification.class);
                                 startActivity(ic);
                break;
                     }}
                   @Override
        public void onNothingSelected(AdapterView<?> arg0) {
            // TODO Auto-generated method stub

        }
    });
于 2013-11-12T09:23:08.323 に答える
0

をスピナーに追加するOnItemSelectedListenerと、そこから選択したデータを取得できます。

その後、選択したデータに従って各アクティビティに移動できます。

 spinner.setOnItemSelectedListener(new OnItemSelectedListener() {

    @Override
    public void onItemSelected(AdapterView<?> parent, View arg1,
        int position, long arg3) {

    String data = spinnerDataSource.get(position); 
    if(data.equals("RESULTS")) {
     //navigates to result class
    }else if(data.equals("CLASIFICATION")) {
      //navigates to classification class 
    }else {
      //navigates to News class
    }


    }

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

    }
});
于 2013-11-12T09:20:17.110 に答える