当我点击我的应用程序中的按钮时,我想打开我的自定义相机 请帮帮我。
提前致谢:)
private static Button button;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
OnClickButtonListener();
}
public void OnClickButtonListener() {
button = (Button) findViewById(R.id.camerabutton);
button.setOnClickListener(
new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent intent =new Intent ("com.example.hrbl.camera");
startActivity(intent);
}
});
答案 0 :(得分:0)
如果它是应用程序内的活动,请尝试此
Intent intent =new Intent (MyAcitivty.this, CustomCameraActivity.class);
startActivity(intent);
只需更改活动名称,使其符合您的要求