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.
我想要做的是当设备是更高版本的 ICS 时我想使用PopupMenu,对于早期版本,它会自动更改为contextmenu。
可以通过代码控制吗?
您可以查看当前使用该设备的 Android 版本
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.ICE_CREAM_SANDWICH) { //show context menu as you need } else { // show pop up }