ウィジェットの 1 つのボタンをクリックしてビューを変更し、別のボタンをクリックして別のアクティビティに移動する方法を教えてください。
前もって感謝します。
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);
});