0

ウィジェットの 1 つのボタンをクリックしてビューを変更し、別のボタンをクリックして別のアクティビティに移動する方法を教えてください。

前もって感謝します。

4

1 に答える 1

0
   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);
    });
于 2013-09-20T09:35:53.677 に答える