0

次のコードでは、findViewById は null を返します。

public void onCreateContextMenu(ContextMenu menu, View view, ContextMenuInfo menuInfo) {
    if (view == this.getListView()) {
        AdapterView.AdapterContextMenuInfo info = (AdapterView.AdapterContextMenuInfo)menuInfo;
        final Message clickedMessage = this.adapter.getItem(info.position);
        menu.setHeaderTitle(clickedMessage.getTitle());
        MenuInflater inflater = getMenuInflater();
        inflater.inflate(R.menu.showuser_context, menu);
        View button = this.findViewById(R.id.showuser_contextmenu_showthread);
        // I would like to call button.setOnClickListener here
}

res/menu/showuser_context.xml:

<?xml version="1.0" encoding="utf-8"?>
<menu
  xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@+id/showuser_contextmenu_showthread" android:title="@string/showuser_contextmenu_showthread"></item>
    <item android:id="@+id/showuser_contextmenu_reply" android:title="@string/showuser_contextmenu_reply"></item>
</menu>

プロジェクトを「クリーン」(プロジェクト -> Eclipse メイン メニューからクリーン) しようとしましたが、まだ機能しません。

よろしく、ProgVal

4

2 に答える 2

1

試す :

View button = menu.findViewById(R.id.showuser_contextmenu_showthread);

それ以外の :

View button = this.findViewById(R.id.showuser_contextmenu_showthread);
于 2011-11-27T15:17:29.173 に答える
1

findViewById(); でメニュー項目を取得できません。代わりに使用する必要があります

@Override
public boolean onContextItemSelected(MenuItem item) {
   if (item.getItemId() == android.R.id.showuser_contextmenu_showthread)
      //Your stuff
      return true;
   }
   return super.onContextItemSelected(item);
}
于 2011-11-27T15:18:05.610 に答える