我找不到从列表中选择项目的方法,每个项目由三个文本字段组成[重复]

Posted

技术标签:

【中文标题】我找不到从列表中选择项目的方法,每个项目由三个文本字段组成[重复]【英文标题】:I can't find a way to select items from a list, each made of three text fields [duplicate] 【发布时间】:2020-06-01 18:45:03 【问题描述】:

我查看了数十个示例和教程,并尝试重复相同的步骤,但它不起作用。

在我的活动中,我有四个 onClickListener,它们工作得非常好,并且与布局顶部的四个按钮相关。此外,当我尝试在同一布局的底部为 ListView 的项目设置 onItemClickListener 时,就会出现问题。这个 ListView 的每一项都由三个 textView 组成,我为它们编写了一个自定义适配器。它们完美地显示出来,但是当我点击它们时没有任何反应(永远无法达到 onItemClick 指令)。

这是布局,问题在于最后的“ingredients_list_view”: (顺便说一句,最后一项,@android:id/list”,只是因为否则我在我的活动中得到一个编译错误,我还没有弄清楚为什么 - 否则我不需要它,并且它根本不应该显示或做任何事情)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_
    android:layout_
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <TextView
        android:layout_
        android:layout_
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:text="@string/label_recipe_name"
        android:layout_gravity="top"/>

    <EditText
        android:layout_
        android:layout_
        android:inputType="textCapCharacters"
        android:id="@+id/editTextTitle"
        android:layout_gravity="top"/>

    <TextView
        android:layout_
        android:layout_
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:text="@string/label_servings"
        android:layout_gravity="top"/>

    <EditText
        android:layout_
        android:layout_
        android:inputType="textCapCharacters"
        android:id="@+id/editTextServings"
        android:layout_gravity="top"/>

    <TextView
        android:layout_
        android:layout_
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:text="@string/label_cake_size"
        android:layout_gravity="top"/>

    <EditText
        android:layout_
        android:layout_
        android:inputType="textCapCharacters"
        android:id="@+id/editTextSize"
        android:layout_gravity="top"/>

    <LinearLayout
        android:layout_
        android:layout_
        android:layout_gravity="bottom"
        android:orientation="vertical">

        <LinearLayout
            android:layout_
            android:layout_
            android:layout_weight="1"
            android:id="@+id/btnEditDelete"
            android:orientation="horizontal">

            <Button
                android:layout_
                android:layout_
                android:layout_weight="1"
                android:text="@string/button_edit"
                android:id="@+id/btnEdit"/>

            <Button
                android:layout_
                android:layout_
                android:layout_weight="1"
                android:text="@string/button_delete"
                android:id="@+id/btnDelete"/>

        </LinearLayout>

        <LinearLayout
            android:layout_
            android:layout_
            android:layout_weight="0"
            android:id="@+id/btnSaveCancel"
            android:orientation="horizontal">

            <Button
                android:layout_
                android:layout_
                android:layout_weight="1"
                android:text="@string/button_save"
                android:id="@+id/btnSave"/>

            <Button
                android:layout_
                android:layout_
                android:layout_weight="1"
                android:text="@string/button_cancel"
                android:id="@+id/btnCancel"/>

        </LinearLayout>
    </LinearLayout>

    <ListView
        android:layout_
        android:layout_
        android:id="@+id/ingredients_list_view"
        android:divider="#48C"
        android:dividerHeight="1dp"
        android:layout_weight="1" />

    <ListView
        android:layout_
        android:layout_
        android:id="@android:id/list"/>

</LinearLayout>

这是listView每个项目的布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="horizontal"
    android:layout_
    android:layout_>
    <EditText
        android:id="@+id/ingredient_list_item"
        android:layout_
        android:layout_weight="1"
        android:layout_
        android:paddingLeft="6dip"
        android:paddingTop="6dip"
        android:textSize="22sp"
        android:textStyle="bold" />
    <EditText
        android:id="@+id/quantity_list_item"
        android:layout_
        android:layout_
        android:paddingLeft="6dip"
        android:paddingTop="6dip"
        android:textSize="22sp"
        android:textStyle="bold" />
    <EditText
        android:id="@+id/unit_list_item"
        android:layout_
        android:layout_
        android:paddingLeft="6dip"
        android:paddingTop="6dip"
        android:textSize="22sp"
        android:textStyle="bold" />
</LinearLayout>

...这些是主要活动的相关部分:


public class Recipe extends ListActivity implements View.OnClickListener 

    public static final String TABLE = "Recipes";

    public static final String KEY_ID = "recipeID";
    public static final String KEY_title = "title";
    public static final String KEY_servings = "servings";
    public static final String KEY_size = "size";

    public int recipeID;
    public String title;
    public String servings;
    public String size;

    Button btnEdit, btnDelete, btnSave, btnCancel;
    LinearLayout btnEditDelete, btnSaveCancel;
    EditText editTextTitle;
    EditText editTextServings;
    EditText editTextSize;

    int _Recipe_Id;
    int editMode;


    @Override
    protected void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_recipe_view);
        redraw();
    

    @Override
    public void onClick(View view) 
// These work perfectly fine (except for the last one)
        RecipeDBOps repo = new RecipeDBOps(this);
        ArrayList<HashMap<String, String>> recipeList = repo.getRecipeList(); // so far not used
        if (view == findViewById(R.id.btnDelete)) 
            MixDBOps.delete(_Recipe_Id);
            RecipeDBOps.delete(_Recipe_Id);
            finish();
        
        else if (view == findViewById(R.id.btnEdit))  // Changes the fields to "editable" and switches button
            setEditMode();
        
        else if (view == findViewById(R.id.btnCancel)) 
            finish();
        
        else if (view == findViewById(R.id.btnSave))
            Recipe recipe = RecipeDBOps.getRecipeById(_Recipe_Id);
            recipe.title = editTextTitle.getText().toString();
            recipe.servings = editTextServings.getText().toString();
            recipe.size = editTextSize.getText().toString();
            RecipeDBOps.update (recipe);
            finish();
        
        else if (view == findViewById(R.id.ingredients_list_view))
            System.out.println("OK2"); // Tried, but doesn't work
        
    

    public void setWeight (LinearLayout ll, LinearLayout.LayoutParams visibility)...

    public void setReadOnlyMode()...

    public void setEditMode()...

    public void redraw()
        editTextTitle = (EditText) findViewById(R.id.editTextTitle);
        editTextServings = (EditText) findViewById(R.id.editTextServings);
        editTextSize = (EditText) findViewById(R.id.editTextSize);
        btnEdit = (Button) findViewById(R.id.btnEdit);
        btnDelete = (Button) findViewById(R.id.btnDelete);
        btnSave = (Button) findViewById(R.id.btnSave);
        btnCancel = (Button) findViewById(R.id.btnCancel);
        btnEditDelete = (LinearLayout) findViewById(R.id.btnEditDelete);
        btnSaveCancel = (LinearLayout) findViewById(R.id.btnSaveCancel);

        setReadOnlyMode();

        //
        // Populate recipe fields
        //
        Intent intent = getIntent();
        _Recipe_Id = intent.getIntExtra("recipe_ID", 0);
        editMode = intent.getIntExtra("editMode", 0);
        RecipeDBOps repo = new RecipeDBOps(this);
        Recipe recipe;
        recipe = repo.getRecipeById(_Recipe_Id);

        if (recipe.title != null) 
            editTextTitle.setText(recipe.title);
            editTextServings.setText(recipe.servings);
            editTextSize.setText(recipe.size);
        

        //
        // Populate recipe and ingredient fields
        //
        ArrayList<Entry> arrayOfEntries = new ArrayList<Entry>();
        EntryAdapter adapter = new EntryAdapter(this, arrayOfEntries);
        ListView listView = (ListView) findViewById(R.id.ingredients_list_view);
        listView.setAdapter(adapter);
////////////////////////////////////////////////////////////////////////////////////
        // This is the part that does not work
        listView.setOnItemClickListener(new AdapterView.OnItemClickListener()
        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) 
            ListView clickedObj = (ListView) parent.getItemAtPosition(position);
            // Once I am able to activate this onItemClick I will write the rest of the code to deal with clickdObj 
            System.out.println("OK1");
        );
////////////////////////////////////////////////////////////////////////////////////


        HashMap<String, String> h;
        MixDBOps repoMix = new MixDBOps(this); // repo represents the DB
        ArrayList<HashMap<String, String>> entryList = repoMix.getMixById(_Recipe_Id); // recipeList is the output of the SQL query
        Entry[] ent = new Entry[entryList.size()];

        for (int i = 0; i < entryList.size(); i++) 
            h = entryList.get(i);
            ent[i] = new Entry();
            ent[i].recipe_name = recipe.title;
            ent[i].ingredient_name = h.get("ingredient_name"); // temporarily replaced by spinner
            ent[i].quantity= Integer.parseInt(h.get("quantity"));
            ent[i].unit_name= h.get("unit_name");
            adapter.add(ent[i]);
        

        btnEdit = (Button) findViewById(R.id.btnEdit);
        btnEdit.setOnClickListener(this);

        btnDelete = (Button) findViewById(R.id.btnDelete);
        btnDelete.setOnClickListener(this);

        btnSave = (Button) findViewById(R.id.btnSave);
        btnSave.setOnClickListener(this);

        btnCancel = (Button) findViewById(R.id.btnCancel);
        btnCancel.setOnClickListener(this);

        if (editMode == 1)
            setEditMode();
        
    


有人能帮帮我吗?

【问题讨论】:

关于带有@android:id/list的项目:这是因为您的活动继承自ListActivity。由于您提供自己的布局,因此您可以让您的 Activity 直接从 AppCompatActivity 继承。 【参考方案1】:

在列表视图项的每个编辑文本中添加两个属性

    android:focusable="false"
    android:clickable="false"

【讨论】:

刚试了,好像没什么区别 我认为出现此问题是因为当您单击列表视图时,列表视图无法识别您单击的内容。请检查当您单击列表视图的项目时,您是否在列表视图中看到任何显示您单击项目的效果。例如,当您单击 item 时, item 会显示一个小动画。 其实我的点击完全没有被识别的迹象 在你的问题中你说“这个 ListView 的每个项目都由三个 textViews 组成”但是在你的代码中你添加了三个编辑文本。 是的,你是对的,我都试过了。实际上,这些应该是以编程方式启用或禁用的 EditText(即,您单击“编辑”,文本变为可编辑)。尽管如此,我的想法是我点击同一行上的某些内容(属于同一 ListView 条目的三个文本项)并触发“onclick”,但它没有发生

以上是关于我找不到从列表中选择项目的方法,每个项目由三个文本字段组成[重复]的主要内容,如果未能解决你的问题,请参考以下文章

Kivy listview 文本对齐

角阵列变化检测

选择器视图 - 文本字段未更新

为报表选择多个参数,如何在参数列表中为每个项目创建多个页面?

在 Anylogic 中,如何从项目列表中随机选择

Windows 窗体列表框在同一个框中的多个列表