设置元素ID时,Android应用程序崩溃,Xamarin Android

时间:2018-06-15 22:55:36

标签: xml xamarin.android

我正在使用Xamarin Android开发简单的应用程序。我有一个Recycler View,我想在所有元素下面添加TextView。它的效果非常好。当axml文件如下所示:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/regularExpensesRecyclerView" />
<TextView
    android:text="Text"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />
</LinearLayout>

但如果我为我的TextView设置了一个id

    <TextView
    android:text="Text"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" 
    android:id="@+id/myTextView"/>

我收到一个InvocationTargetException。我不知道是什么原因导致这种行为。

1 个答案:

答案 0 :(得分:0)

解决方案比我想象的要简单。几乎每次部署之前清理解决方案都可以防止Id的错误