Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对不起我的英语,我来自俄罗斯。测试按钮,当按下时出现活动。如何获得此活动的链接?
检查这个
Button bt = (Button)findViewById(R.id.button1); bt.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { Intent intent = new Intent(this,yourcalss.class); startActivity(intent); } });