0

我想打開我的自定義相機,當我點擊我的應用程序中的按鈕。
請幫我一把。自定義相機啓動按鈕點擊Android

感謝提前:)

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

它是一個在應用程序內的活動。 , –

回答

0

如果它是在應用程序中的活動,然後嘗試這個

Intent intent =new Intent (MyAcitivty.this, CustomCameraActivity.class); 
      startActivity(intent); 

只需更改活動名稱,以便它們適合你