我搞砸了什么,终于什么都没出来了。 有人可以告诉我一个非常基本的例子,如何使用Path显示带有边框轮廓的popupwindow。请不要发布XML形状。我需要使用Path,因为outline不是矩形的。
我有一些poc工作,但后来我完全搞砸了什么,现在没有任何东西。
基本上我拥有的是(不是完整的代码):
public myPop extends PopupWindow {
public myPop(Conext context) {
super(context);
setFocusable(true);
setWindowLayoutMode(View.MeasureSpec.makeMeasureSpec(300, View.MeasureSpec.AT_MOST), ViewGroup.LayoutParams.WRAP_CONTENT);
LayoutInflater inflater = LayoutInflater.from(context);
layout = inflater.inflate(R.layout.settings2, null);
//setBackgroundDrawable(new ColorDrawable(Color.BLUE));
Path path = new Path();
path.moveTo(0, 0);
path.lineTo(100, 0);
path.lineTo(100, 100);
setBackgroundDrawable(new OutlineDrawable(path);
setContentView(layout);
}
public void show() {
showAtLocation(this.parent, Gravity.NO_GRAVITY, 100, 500);
}
}
OutlineDrawable仅此而已,只是在Draw()中扩展Drawable,我用给定的路径调用drawPath(),并使用描边样式绘制一些颜色。
答案 0 :(得分:0)
对不起。我发现了我的问题。 Drawable Paint有alpha 0 - 错误。我知道我必须犯一些愚蠢的错字。哎呀。