在應用程序中,當我選擇右上角的相機時,我想要一個消息或對話框出現。一旦選擇相機我希望出現一個消息,說是「拍照」或「從圖庫中選擇」Android Studio - 從圖庫中選擇圖片
下面是代碼:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
if (!contact.getHidden()) {
getMenuInflater().inflate(R.menu.conversation, menu);
if (!Preferences.getBoolean(this, Preferences.PREF_DEV_IMAGE_CAPTURE, false)) {
MenuItem camera = menu.findItem(R.id.launch_camera);
camera.setVisible(false);
}
}
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
if (item.getItemId() == R.id.launch_voip_call) {
Utils.startCall(this, contact);
return true;
} else if (item.getItemId() == R.id.launch_camera) {
Intent cameraIntent = new Intent(ConversationActivity.this, CameraActivity.class);
cameraIntent.putExtra("EXTRA_CONTACT_JID", contact.getJid());
startActivity(cameraIntent);
}
return false;
}
你面臨什麼問題? – Yashasvi
非常新的android工作室,因爲我只有基本的知識。只是想知道如何在選擇FAB時使對話框出現兩個選項。 – nsamad400