gpt4 book ai didi

android - Android 风格的 PopupMenu

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:07:20 25 4
gpt4 key购买 nike

我如何在 android 中设置 PopupMenu 的样式?我想要灰色背景和文本前的图标。

  • 我可以在 java 代码中修复这个动态吗?
  • 我要用全局样式文件解决这个问题吗?

像这样:

<style name="GreenText" parent="@android:style/PopupMenu">
<item name="android:textColor">#00FF00</item>
</style>

或者我可以像在这个线程中那样更好地构建一个 PopupWindow 吗?

inflate popup menu items programatically

谢谢。

最佳答案

我找不到一种简单的方法来设置 PopupMenu 的样式,所以我改用“PopupWindow”,将 ListView 传递给它,然后根据需要设置样式。

popView=layoutInflater.inflate(R.layout.pop_layout, null); // layout with a listview to     put in the popup window
lv=(ListView)popView.findViewById(R.id.pop_listview); // then set listview parameters

final PopupWindow contentsopupWindow = new PopupWindow(popView,LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);
contentsopupWindow.setBackgroundDrawable(mContext.getResources().getDrawable(R.drawable.pixel_dot));// set a background so the menu disappears when you click outside it
contentsopupWindow.setTouchable(true);
contentsopupWindow.setFocusable(true);
contentsopupWindow.setOutsideTouchable(true);
contentsopupWindow.setTouchInterceptor(new OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_OUTSIDE) {
contentsopupWindow.dismiss();
return true;
}
return false;
}
});
WindowManager wm = (WindowManager) mContext.getSystemService(Context.WINDOW_SERVICE);


contentsopupWindow.showAsDropDown(anchorView);

关于android - Android 风格的 PopupMenu,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9671896/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com