我想制作一个弹出菜单,允许在android上选择不同的选项

发布于 2024-11-28 19:42:08 字数 187 浏览 2 评论 0原文

我有一个显示一些医疗信息的位图,并且希望有一个选项可以从位图底部调出一个菜单,该菜单允许选择不同的诊断,其中一些在子菜单中。

我曾认为使用滑动绘图可能是一个很好的简单想法,但我认为必须有更好的方法来做到这一点。我必须能够单击选项,以便将数据保存到文件中。

除了使用滑动绘图和按钮之外的任何建议将不胜感激。

谢谢。

I have a bitmap displaying some medical information and want to have an option to bring up a menu from the bottom of the bitmap which allows choosing different diagnostics, some within sub menus.

I had thought that possibly using a sliding draw would be a good simple idea for this but I think there must be a better way to do this. I must be able to have the options clickable so that the data can be saved to a file.

Any suggestions other than using a sliding draw and buttons would be much appreciated.

Thanks.

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

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

发布评论

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

评论(1

四叶草在未来唯美盛开 2024-12-05 19:42:08

使用 android 的选项菜单。可以为每个活动进行设置。

在活动中使用代码

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    MenuInflater inflater = getMenuInflater();
    inflater.inflate(R.menu.menu, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {

}

并在资源文件夹的菜单文件夹中添加menu.xml文件

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@+id/export_menubutton_id" android:title="Export" />
    <item android:id="@+id/email_menubutton_id" android:title="Email" />
    <item android:id="@+id/facebook_menubutton_id" android:title="Facebook" />  
</menu>

Use the options menu of android. It can be set for each activity.

in the activity use the code

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    MenuInflater inflater = getMenuInflater();
    inflater.inflate(R.menu.menu, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {

}

And add a menu.xml file in the menu folder of the resources folder

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@+id/export_menubutton_id" android:title="Export" />
    <item android:id="@+id/email_menubutton_id" android:title="Email" />
    <item android:id="@+id/facebook_menubutton_id" android:title="Facebook" />  
</menu>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文