我在xml
文件中有线性布局:
<LinearLayout
android:orientation="vertical"
android:id="@+id/ben_pay_methods"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/layout1">
</LinearLayout>
我正在使用它:
listView = (ListView) parentView.findViewById(R.id.ben_pay_methods);
应用程序正常运行。问题是,当我尝试构建签名的apk时,它给了我错误:
意外转换为ListView:布局标记为线性布局[WrongViewCast]
如何在不更改xml的情况下解决此问题? 感谢。