0

すべてのボタンとすべてのリンクが正常に機能するようにしましたが、問題は、上部のボタンから開始して選択してから、それぞれのボタンが機能するようにする必要があることです。つまり、各ボタンを順番に選択するまで、どのボタンも機能しません。私はここで簡単なことを見逃していると確信しています。私がここで何をしているのかまったくわからないだけです。助けてくれてありがとう!

     package rainbow.cheetah.go.sms;

import android.app.Activity;
import android.os.Bundle;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class RainbowCheetahGOSMSActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);


        Button btn = (Button) findViewById(R.id.More);
        btn.setOnClickListener(new OnClickListener() {
                public void onClick(View v) {
                        Intent myWebLink = new Intent(android.content.Intent.ACTION_VIEW);
                        myWebLink.setData(Uri.parse("https://play.google.com/store/search?q=stealthychief&c=apps"));
                        startActivity(myWebLink); 



                       Button btn = (Button) findViewById(R.id.match);
                        btn.setOnClickListener(new OnClickListener() {
                                public void onClick(View v) {
                                        Intent myWebLink = new Intent(android.content.Intent.ACTION_VIEW);
                                        myWebLink.setData(Uri.parse("https://play.google.com/store/search?q=rainbow+cheetah+stealthychief&c=apps"));
                                        startActivity(myWebLink);  


                        Button btn = (Button) findViewById(R.id.rate);
                        btn.setOnClickListener(new OnClickListener() {
                                public void onClick(View v) {
                                        Intent myWebLink = new Intent(android.content.Intent.ACTION_VIEW);
                                        myWebLink.setData(Uri.parse("https://play.google.com/store/apps/details?id=rainbow.cheetah.go.sms&feature=search_result#?t=W251bGwsMSwxLDEsInJhaW5ib3cuY2hlZXRhaC5nby5zbXMiXQ.."));
                                        startActivity(myWebLink);               

                                        Button btn = (Button) findViewById(R.id.twitter);
                                        btn.setOnClickListener(new OnClickListener() {
                                                public void onClick(View v) {
                                                        Intent myWebLink = new Intent(android.content.Intent.ACTION_VIEW);
                                                        myWebLink.setData(Uri.parse("https://twitter.com/#!/Stealthychief"));
                                                        startActivity(myWebLink);






                        Button btn = (Button) findViewById(R.id.google);
                        btn.setOnClickListener(new OnClickListener() {
                                public void onClick(View v) {
                                        Intent myWebLink = new Intent(android.content.Intent.ACTION_VIEW);
                                        myWebLink.setData(Uri.parse("https://plus.google.com/u/0/105194414710791941012/posts"));
                                        startActivity(myWebLink);     }
                        });           
                  }
                });
    }


    });

    }
        });

}});

    }};
4

1 に答える 1

0

これは、かっこを完全に台無しにしたためです。私はあなたがこのような何かを意味したと思います:

public class RainbowCheetahGOSMSActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        Button btn = (Button) findViewById(R.id.More);
        btn.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                Intent myWebLink = new Intent(
                        android.content.Intent.ACTION_VIEW);
                myWebLink.setData(Uri
                        .parse("https://play.google.com/store/search?q=stealthychief&c=apps"));
                startActivity(myWebLink);
            }
        });

        Button btn2 = (Button) findViewById(R.id.match);
        btn2.setOnClickListener(new OnClickListener() {
                public void onClick(View v) {
                        Intent myWebLink = new Intent(android.content.Intent.ACTION_VIEW);
                        myWebLink.setData(Uri.parse("https://play.google.com/store/search?q=rainbow+cheetah+stealthychief&c=apps"));
                        startActivity(myWebLink);
                }
        });

        Button btn3 = (Button) findViewById(R.id.rate);
        btn3.setOnClickListener(new OnClickListener() {
                public void onClick(View v) {
                        Intent myWebLink = new Intent(android.content.Intent.ACTION_VIEW);
                        myWebLink.setData(Uri.parse("https://play.google.com/store/apps/details?id=rainbow.cheetah.go.sms&feature=search_result#?t=W251bGwsMSwxLDEsInJhaW5ib3cuY2hlZXRhaC5nby5zbXMiXQ.."));
                        startActivity(myWebLink);
                }
        });

        Button btn4 = (Button) findViewById(R.id.twitter);
        btn4.setOnClickListener(new OnClickListener() {
                public void onClick(View v) {
                        Intent myWebLink = new Intent(android.content.Intent.ACTION_VIEW);
                        myWebLink.setData(Uri.parse("https://twitter.com/#!/Stealthychief"));
                        startActivity(myWebLink);
                }
        });

        Button btn5 = (Button) findViewById(R.id.google);
        btn5.setOnClickListener(new OnClickListener() {
                public void onClick(View v) {
                        Intent myWebLink = new Intent(android.content.Intent.ACTION_VIEW);
                        myWebLink.setData(Uri.parse("https://plus.google.com/u/0/105194414710791941012/posts"));
                        startActivity(myWebLink); 
                }
        });

    }
}
于 2012-04-21T16:46:29.537 に答える