我正在尝试充气
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<Item android:id="@+id/ltArr"
android:layout_alignParentLeft="true"
android:icon="@android:drawable/arrow_up_float"/>
<TextView android:id="@+id/ImText"
android:layout_toRightOf="@id/ltArr"/>
<Item android:layout_alignParentRight="true"
android:layout_toRightOf="@id/ImText"
android:icon="@android:drawable/arrow_down_float"/>
</RelativeLayout>
在我调用 addTextView 的过程中,它位于 try catch 块中
try{
addTextView("Showtext", intID, addtothisLayout);
}catch (Exception ex){}
当在 addText 过程中对上面的布局进行膨胀时,上面捕获了一个异常,执行被发送回调用过程中的 catch
void addTextView(String showTxt,integer id, ViewGroup addtoparent)
{
View itemview = View.inflate(this, R.layout.itemlayout, addtoparent); //this causes the exception
..
..
}
为什么抛出异常时我看不到 ex 变量中的任何内容?
我在尝试一些愚蠢的事情吗?
我如何查看异常的内容?当调试器通过它时,我尝试检查异常 ex 变量,但它没有任何内容。如果我在过程中使用 SQL。我会专门抛出 SQLException ,这样我就可以看到错误描述,但在这里我不知道要抛出什么......?
通过删除 try catch 子句,我在 LogCat 中找到了对资源不可用异常的引用。但是我如何在 try ex var 中捕捉这些描述?我必须抛出特定的异常吗?
好的,这就是我的答案,我试图检查变量的声明并且需要在代码块中放置一些东西。“ex.toString()”
catch (Exception ex){
ex.toString();
}
感谢大家非常及时的回复。