我正在开发一个允许用户显示 AlertDialog 的 Android 项目。这包含复选框文本视图和两个按钮(关闭、验证)等控件。
所以我试图通过看起来不可能的意图从这个 AlertDialog 启动一个 Activity 到一个 Activity 。
public Intent (Context packageContext, Class<?> cls)
我已经准备好阅读很多帖子,但任何人都非常有帮助
有没有另一种方法来解决这个问题?
编辑1:
下面的代码描述了我的类 InProgressAlertDialog
public class InProgressAlertDialog extends Dialog implements View.OnClickListener{
public InProgressAlertDialog(Context context) {
}
public void onClick(View v) {
// where I dismiss the AlertDialog or Start an Activity
}
private void initialiseControls(xxxxx)
{
//where initialize all my controls
setContentView(R.layout.xxxxxxxxxx);
linearMain = (LinearLayout)findViewById(R.xxxxxxxxx.yyyyyyyy);
linearMain.setOrientation(LinearLayout.VERTICAL);
linearButton = new LinearLayout(_context);
btnValide = new Button(_context);
btnValide.setOnClickListener(this);
linearButton.addView(btnValide);
btnCancel = new Button(_context);
btnCancel.setOnClickListener(this);
linearButton.addView(btnCancel);
}
那么如何在我的 onClick 方法上从此类中启动 Activity 呢?