首先,这是我第一次尝试Xamarin(SDK工具26.1.1,SDK平台工具28.0,SDK构建工具27.0.0) 在不对示例代码进行任何修改的情况下,FloatingActionButton成功显示了Snackbar。 但是经过试验后,我发现如果在示例TextView中添加ID,则FAB触发的Snackbar会导致崩溃。
为什么会这样?我该如何克服?即包括没有崩溃的ID
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:id="@+id/textView1"
android:text="Hello World!" />
感谢&Rgds, ref
未处理的异常:
Android.Views.InflateException:发生
[appname]已停止
再次打开应用
[add entire file as requested]
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_main">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:id="@+id/textView1"
android:text="Hello World!" />
</RelativeLayout>