有人可以告诉我如何单击小部件的一个按钮并更改视图,然后再单击另一个按钮以进行另一个活动吗?
提前致谢。
First take the id of both button and store it in Btn1 and Btn2 respective id and do this
Btn1.setOnClickListener(new OnClickListener()
{
public void onClick(View v){
FrameLayout userwallFrmWall = (FrameLayout) findViewById(R.id.floatinglist_frm_startpage);
viewMyWall = getLayoutInflater().inflate(R.layout.mywall, null);
userwallFrmWall.addView(viewMyWall);
});
Btn1.setOnClickListener(new OnClickListener()
{
public void onClick(View v){
Intent intent=new Intent(this,desired.class);
startActivity(intent);
});