我正在使用android-uitableview
我有这个问题:
当我使用此代码时:
LayoutInflater mInflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
RelativeLayout view = (RelativeLayout) mInflater.inflate(R.layout.custom_view, null);
ViewItem viewItem = new ViewItem(view);
getUITableView().addViewItem(viewItem);
当我单击此按钮时,我无法转到onClick(int index)
<= 问题
但是当我使用时getUITableView().addBasicItem
,我可以处理点击。
单击自定义视图时如何处理?
问候