我正在玩我的第一个穿戴式操作系统智能手表,并试图仅使用MainActivity.cs和activity_main.axml创建一个简单的应用程序。
我当前正在显示一个基本图像,但是我希望能够根据属性更改其可见性。
当前.axml代码:
<?xml version="1.0" encoding="utf-8"?>
<android.support.wear.widget.BoxInsetLayout 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"
android:padding="@dimen/box_inset_layout_padding"
tools:deviceIds="wear">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="@dimen/inner_frame_layout_padding"
app:boxedEdges="all"
android:minWidth="25px"
android:minHeight="25px">
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="25dp"
android:text="@string/hello_world" />
<ImageView
android:id="@+id/imageView1"
android:src="@drawable/next"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</FrameLayout>
</android.support.wear.widget.BoxInsetLayout>
我试图更改ImageView并在下面添加了以下数据标签:
<data>
<variable
name="isVisible"
type="boolean"/>
</data>
<ImageView
android:id="@+id/imageView1"
android:src="@drawable/next"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="@{isVisible ? View.VISIBLE : View.GONE}"
/>
但是,进行此更改后,出现以下错误:
No resource type specified (at 'visibility' with value '@{isVisible ? View.VISIBLE : View.GONE}')
我该如何解决/最合适的方法是什么?