group_row.xml
<?xml version="1.0" enCoding="utf-8"?><relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" > <TextVIEw androID:ID="@+ID/Groupname" androID:paddingleft="40dp" androID:textSize="18sp" > </TextVIEw> <ImageVIEw androID:ID="@+ID/Menu" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:layout_alignParentRight="true" androID:layout_margintop="10dp" androID:contentDescription="@string/default_content_description_text" androID:src="@drawable/ic_menu_moreoverflow_normal_holo_light" > </ImageVIEw></relativeLayout>
当您单击TextVIEw时,它将展开或折叠,具体取决于当前是否显示子行.我已将OnClickListener附加到组行中的ImageVIEw.单击此ImageVIEw时,我启动一个PopupMenu,如下图所示:
显示PopupMenu并单击其中一个 *** 作后,我想对该组的所有子项执行 *** 作.问题是我无法确定单击ImageVIEw的行.
我想出如何将动作应用于所有孩子的唯一方法是使用ContextMenu,如下图所示:
我想避免使用ContextMenu,因为组行上的LongClick可能不明显,用户无法确定它会对子行执行某些 *** 作.我认为更明显的设计是将PopupMenu锚定到ImageVIEw(在我的例子中是菜单图标)并将 *** 作应用于该组的子行.如何使用PopupMenu获得此功能?
解决方法 所以我发现,为了获得点击了哪个菜单图标的上下文,我使用了VIEw类的 setTag()和 getTag()方法,并将这些方法应用于ImageVIEw(菜单图标). 总结以上是内存溢出为你收集整理的android – 像ContextMenu一样获取PopupMenu的上下文全部内容,希望文章能够帮你解决android – 像ContextMenu一样获取PopupMenu的上下文所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)