0

我创建了扩展 View 的类。现在我想在用户做某事时显示 AlertDialog。我怎样才能做到这一点?

AlertDialog alertDialog = new AlertDialog.Builder(this).create();

这段代码不起作用,因为“this”变量应该是一个 Activity,但我的类中的“this”是“Drawable”。

4

1 回答 1

0

Get your context into your class and replace that instance with "this".

于 2012-12-06T19:29:56.147 回答