Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个标签,在它们下面有自己的片段。有一个标签的片段有网格视图项目。我希望在点击每个项目时应该打开一个新片段。标签必须保留,但片段应该不同。
这可能吗?...
建议我一些可能的方法来做到这一点..
谢谢..
是的,这是可能的。首先,你必须使用 GridView 的 setOnItemClickListener(),来设置一个监听器 gridviews click。
然后您可以检测到哪个元素已被单击并进行转换。你是如何实现标签的东西的?要进行过渡,您需要片段管理器并替换片段。
Fragment fragment = new Fragment(); getFragmentManager().beginTransaction().replace(R.id.content_frame,fragment).commit();