我得到一个 Inflate Exception, android.view.InflateException: Binary XML file line #76: Error inflating class,同时在 XML 中添加 AdWhirl 布局并将这个 XML 设置为对话框的内容视图,我不知道为什么这个异常正在发生以及如何解决它请指导我解决此问题,我认为以下代码将帮助您诊断问题所在:
这是我的 XML,我在其中添加了 Adwhirl 布局:
<LinearLayout
android:id="@+id/LinearLayout04"
android:layout_marginBottom="20dip"
android:gravity="center"
android:layout_height="250dip"
android:layout_gravity="center"
android:layout_width="fill_parent"
>
<com.adwhirl.AdWhirlLayout <!-- Exception occurred on this line-->
android:id="@+id/adwhirl_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
在 Java 代码中:
runOnUiThread(new Runnable() {
@Override
public void run() {
isShowed = true;
dialog = new Dialog(getApplicationContext());
dialog.setContentView(R.layout.replay_screen);//Exception occurred on this line
}
});