2

AlertDialog.Builder 的参考页面有一个针对 API 11+ 列出的getContext()方法,但此代码:

public void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_main);

    AlertDialog.Builder builder = new AlertDialog.Builder(this);
    LayoutInflater inflater = LayoutInflater.from(builder.getContext());
}

将在 Eclipse 中显示错误:

 The method getContext() is undefined for the type AlertDialog.Builder

但我使用的是 API 级别 15,所以我认为它是可用的。谁能看到问题可能是什么?

4

0 回答 0