android listview上下文菜单

时间:2012-07-21 00:50:22

标签: android listview contextmenu

我想在listview上放置一个上下文菜单。这看起来很简单,但我得到了一些有趣的行为。列表视图有两个字段,textview和editText。长按打开EditText上的菜单,但列表视图上没有其他地方。 以下是代码片段。

public class ManageClass extends ListActivity {

super.onCreate(savedInstanceState);
    setContentView(R.layout.manageclass);

      //Tons of not relevant stuff that I would be happy to provide.
                    pfdata = new PortfolioData(this);
            try {
        Cursor cursor = getClasses();
        showClasses(cursor);

    } finally {
        pfdata.close();
    }
}

  private Cursor getClasses() {

    String sql = "select c._id, c.NAME as NAME , c.percentage as PERCENTAGE "
            + "from asset_classes c;";

    SQLiteDatabase db = pfdata.getReadableDatabase();

    Cursor cursor = db.rawQuery(sql, null);
    startManagingCursor(cursor);
    return cursor;

}

private void showClasses(Cursor cursor) {

    adapter = new MySimpleCursorAdapter(this, R.layout.classrow, cursor,
            FROM, TO, t);

    // Log.d("TEST", Integer.toString(adapter.getCount()));

    setListAdapter(adapter);
    adapter.notifyDataSetChanged();
                //I've tried moving this line around but it hasn't made a difference.
    registerForContextMenu(getListView());
}

@Override
public void onCreateContextMenu(ContextMenu menu, View v,
    ContextMenuInfo menuInfo) {


      menu.add(Menu.NONE, 0, 0, "A");
      menu.add(Menu.NONE, 1, 1, "B");
      menu.add(Menu.NONE, 2, 2, "C");

}

最后,我承认的布局本身过于复杂

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/editText1"
        android:layout_width="300px"
        android:layout_height="wrap_content"
        android:text="@string/TCLabel" />

    <TextView
        android:id="@+id/classtotalpercentage"
        android:layout_width="109dp"
        android:layout_height="wrap_content"
        android:textSize="50px" />
</LinearLayout>

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/AddClassLabel"
        android:layout_width="200px"
        android:layout_height="wrap_content"
        android:layout_weight="0.38"
        android:text="@string/AddClassLabel" />

    <Button
        android:id="@+id/addclass_button"
        android:layout_width="120dp"
        android:layout_height="wrap_content"
        android:text="@string/addclassbutton_label" />
</LinearLayout>

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@color/grey"
    android:orientation="horizontal"
    android:padding="10sp" >

    <TextView
        android:id="@+id/assetclassHeader"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/assetclassHeader"
        android:width="200dp" />

    <TextView
        android:id="@+id/percentageHeader"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/assetclassHeader"
        android:text="@string/percentageHeader"
        android:width="100dp" />
</LinearLayout>

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <ListView
        android:id="@android:id/list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:fadeScrollbars="false"
        android:scrollbarAlwaysDrawVerticalTrack="true"
        android:scrollbarStyle="outsideOverlay"
        android:scrollbars="vertical" />

    <TextView
        android:id="@android:id/empty"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/no_list_data" />
</RelativeLayout>

</LinearLayout>

我感谢任何建议。如果可能的话,我想要textview上的菜单而不是edittext。

更新。我发现它与EditText有关。如果我将其更改为textview或将其全部删除,那么一切都可以正常工作。

1 个答案:

答案 0 :(得分:5)

我有一个类似的复选框问题,发现问题是由复选框获得焦点引起的。我将属性更改为: 机器人:可聚焦= “假”

现在它可以正常工作。