當你點擊按鈕。我想一個項目中調用和執行點擊按鈕通話項目
我的XML文件:
<menu xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android">
<group android:checkableBehavior="single">
<item android:title="Item"
android:id="@+id/nav1" />
<item android:title="Item"
android:id="@+id/nav2"/>
</group>
</menu>
我簡單的菜單項:
@Override
public boolean onNavigationItemSelected(MenuItem item) {
int id = item.getItemId();
if (id == R.id.nav1) {
} else if (id == R.id.nav2) {
}
我的按鈕:
final Button button1 = (Button) findViewById(R.id.mybutton);
button1.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
//when click on this button i want executed item with id nave1
}
});
當點擊按鈕(mybutton)必須調用項目並執行它
請準確解釋您想要的內容,我在評論中看到您添加了更多需求(所選項目,滾動到設置項目可見)。至於我,我會認爲這是一個不同的問題,這可能已經存在於SO上。 – AxelH