Android 列表视图元素的弹出选项卡 Activity

发布于 2024-12-08 17:57:17 字数 125 浏览 0 评论 0原文

我正在开发一个 Android 应用程序,具有列表视图活动。我展示了活动。我想放置一个弹出选项卡活动,该活动具有两个用于列表视图元素的选项卡。当用户单击相应的元素时,应显示弹出选项卡并执行选项卡活动。请帮我提供相应的示例代码。提前致谢。

I am developing one android application, having the listview activity. I displayed the activity. I want to place one pop-up tab activity having two tabs for the list view element. when the user clicks on the corresponding element, the pop-up tab should display and tab activity should be performed. Please help me with the corresponding sample code. Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无声无音无过去 2024-12-15 17:57:17

如果我回答正确你的问题,你想打开一个 TabActivity onItemClick ,它应该看起来像一个弹出窗口,我想建议你在用户单击相应元素时打开一个普通的 TabActivity ..只需将其放入你的清单文件:

<activity android:name=".YourTabActivityExample" ***android:theme="@android:style/Theme.Dialog***">

Theme.Dialog 将使其看起来像弹出窗口...

If i m getting right your question ,you want to open a TabActivity onItemClick ,which should look like a pop-up, I would like to suggest you to open a normal TabActivity when the user clicks on the corresponding element ..just put this in your manifest file :

<activity android:name=".YourTabActivityExample" ***android:theme="@android:style/Theme.Dialog***">

Theme.Dialog will make it to look like a pop-up...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文