如何在列表视图中显示与点击项目相关的数据? (onclicklistener)

时间:2016-03-28 00:16:52

标签: android mysql json listview android-studio

我有一个listview,可以从JSON获取数据。到目前为止,我能够在列表视图中显示数据。 (此处数据是代理商列表)。 现在,我想在列表视图中单击特定代理时打开一个新活动,该代理将显示代理详细信息,如姓名,电话,电子邮件等....

我很感激任何想法,因为我是android的新手。

我的代码:

!

{

public class MainActivity extends AppCompatActivity

}

1 个答案:

答案 0 :(得分:0)

您可以使用以下两个选项。

1)设置OnItemClick,它将触发相应ListView条目中的任何组件(位置指示选择了哪个特定项目条目)(OnItemLongClick也可以以类似的方式使用)。

2)为ListView中的特定视图设置OnClick Listener。这允许特定操作在Listview条目中使用不同的元素/视图。

例如,我有一个包含许多TextView的ListView,其中两个我想采取行动(标记为完成和删除),就像Textviews是按钮一样。有了这些,我在XML中设置了onClick' s。这个问题是你不知道哪个条目(即没有位置,解决方案使用setTags)。我也有OnItemClick。因此,点击其他地方可以选择其他选项/操作。

代码为1(其他行为),其中 shoppinglistlv 是ListView(注意位置是如何可用的),这是在onCreate方法中: -

shoppinglistlv.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                Toast.makeText(view.getContext(), "ListView clicked", Toast.LENGTH_SHORT).show();
            }
        });

2我有: -

public void sledelete(View view) {
        Integer tag = (Integer)view.getTag();
        shoppinglistcsr.moveToPosition(tag);
        shopperdb.setShopListEntryAsComplete(shoppinglistcsr.getLong(0));
        shoppinglistcsr = shopperdb.getShoppingList();
        currentsla.swapCursor(shoppinglistcsr);
    }
public void slareorg(View view) {
        shopperdb.reorgShopList();
        shoppinglistcsr = shopperdb.getShoppingList();
        currentsla.swapCursor(shoppinglistcsr);
    }

除了(注意onClick&#39; s导致调用上述方法,setTag在适配器的bindView中完成)。这是来自ListView Entry的XML而不是ListView本身: -

        <TextView
            android:id="@+id/shoppinglist_donebutton"
            android:layout_width="@dimen/standard_dummy_size"
            android:layout_height="@dimen/standard_subsubsubheading_height"
            android:layout_weight="0.05"
            android:singleLine="true"
            android:text="@string/standarddonebutton"
            android:gravity="center"
            android:textSize="@dimen/standard_subsubsubheading_text_size"
            android:textStyle="bold"
            android:background="@color/colorNormalButton"
            android:textColor="@color/colorNormalButtonText"
            android:onClick="sledone"/>
        <TextView
            android:layout_width="@dimen/standard_dummy_size"
            android:layout_height="match_parent"
            android:layout_weight="0.005"/>
        <TextView
            android:id="@+id/shoppinglist_deletebutton"
            android:layout_width="@dimen/standard_dummy_size"
            android:layout_height="@dimen/standard_subsubsubheading_height"
            android:layout_weight="0.05"
            android:singleLine="true"
            android:text="@string/standarddeletetext"
            android:gravity="center"
            android:textSize="@dimen/standard_subsubsubheading_text_size"
            android:textStyle="bold"
            android:background="@color/colorRequiredLabel"
            android:textColor="@color/colorNormalButtonText"
            android:onClick="sledelete"/>

在adpater的bindView中设置此标记(将标记设置为位置)注意donebtntv和deletebtntv保存相应的Textview ID: -

// Set tags to enable onClick to determine the cursor position of the clicked entry
donebtntv.setTag(Integer.valueOf(pos));
deletebtntv.setTag(Integer.valueOf(pos));

最后,在ListView的XML根目录中,我还有: -

android:descendantFocusability="afterDescendants"

(我不确定这是否是必需的,但是我确实得到了两种类型,上面的1&amp; 2,用此处理)

这可能过于复杂,但会向您展示一些选择。

这是OnItemClick的一些示例代码,用于启动其他活动,具体取决于对话框选择。这显示了如何通过intent extras传递数据: -

// Click on an Aisle to update the Aisle or Stock the Aisle
        aisleslistview = (ListView) findViewById(R.id.aalbclv01);
        aisleslistview.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {

                AlertDialog.Builder okdialog = new AlertDialog.Builder(view.getContext());
                okdialog.setTitle(getString(R.string.aislelistclicktitle));
                okdialog.setMessage(getString(R.string.aislelistclicktext001));
                okdialog.setCancelable(true);
                okdialog.setPositiveButton(getString(R.string.standardedittext), new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        resume_state = RESUMESTATE_AISLEUPDATE;
                        Intent intent = new Intent(findViewById(R.id.aalbclv01).getContext(), AisleAddActivity.class);
                        AislesCursorAdapter aisleadapter = (AislesCursorAdapter) ((ListView) findViewById(R.id.aalbclv01)).getAdapter();
                        intent.putExtra("Caller", THIS_ACTIVITY + "Update");
                        intent.putExtra("AisleID", aisleadapter.getCursor().getString(ShopperDBHelper.AISLES_COLUMN_ID_INDEX));
                        intent.putExtra("AISLEID", aisleadapter.getCursor().getLong(ShopperDBHelper.AISLES_COLUMN_ID_INDEX));
                        intent.putExtra("AisleName", aisleadapter.getCursor().getString(ShopperDBHelper.AISLES_COLUMN_NAME_INDEX));
                        intent.putExtra("AisleOrder", aisleadapter.getCursor().getString(ShopperDBHelper.AISLES_COLUMN_ORDER_INDEX));
                        intent.putExtra("AisleShopRef", aisleadapter.getCursor().getString(ShopperDBHelper.AISLES_COLUMN_SHOP_INDEX));
                        intent.putExtra("SHOPID", aisleadapter.getCursor().getLong(ShopperDBHelper.AISLES_COLUMN_SHOP_INDEX));
                        startActivity(intent);
                        dialog.cancel();
                    }
                });
                okdialog.setNegativeButton(getString(R.string.standardstockaisletext), new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        resume_state = RESUMESTATE_AISLESTOCK;
                        Intent intent = new Intent(findViewById(R.id.aalbclv01).getContext(), AddProductToShopActivity.class);
                        AislesCursorAdapter aisleadapter = (AislesCursorAdapter) ((ListView) findViewById(R.id.aalbclv01)).getAdapter();
                        intent.putExtra("Caller", THIS_ACTIVITY + "Stock");
                        intent.putExtra("AisleID", aisleadapter.getCursor().getString(ShopperDBHelper.AISLES_COLUMN_ID_INDEX));
                        intent.putExtra("AISLEID", aisleadapter.getCursor().getLong(ShopperDBHelper.AISLES_COLUMN_ID_INDEX));
                        intent.putExtra("AisleName", aisleadapter.getCursor().getString(ShopperDBHelper.AISLES_COLUMN_NAME_INDEX));
                        intent.putExtra("AisleOrder", aisleadapter.getCursor().getString(ShopperDBHelper.AISLES_COLUMN_ORDER_INDEX));
                        intent.putExtra("AisleShopRef", aisleadapter.getCursor().getString(ShopperDBHelper.AISLES_COLUMN_SHOP_INDEX));
                        intent.putExtra("AISLESHOPREF", aisleadapter.getCursor().getLong(ShopperDBHelper.AISLES_COLUMN_SHOP_INDEX));
                        intent.putExtra("SHOPID",aisleadapter.getCursor().getLong(ShopperDBHelper.AISLES_COLUMN_SHOP_INDEX));
                        startActivity(intent);
                        dialog.cancel();
                    }
                });
                okdialog.setNeutralButton(getString(R.string.standardbacktext), new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        resume_state = RESUMESTATE_NOTHING;
                        dialog.cancel();
                    }
                });
                okdialog.show();
            }
        });

请注意!以上是使用SQlite / Cursors作为列表源数据。但是,这些技术应该是相似的。