2
私は2つの画像ボタンを持っているaxml
を持っていますが、一度に1つずつ表示し、何かトグル機能を実装したいだけです。MVVMCrossのImageButtonの可視性
具体的には、ユーザーがbutton1
をクリックすると、button1
が表示され、button2
と表示され、その逆もあります。私はMVVMCross
パターンを使用しています。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="40dp"
android:paddingLeft="20dp"
android:paddingRight="20dp">
<ImageButton
android:id="@+id/myBtn1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_arrow_back" />
<ImageButton
android:id="@+id/myBtn2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_arrow_white" />
</RelativeLayout>
ありがとう、それは完璧に働いた。 InvertedVisibility機能を知っておいてよかった! – hotspring
ええ、「リストのアイテムが表示されない」ビューを表示/非表示にするために、リスト上のカウントへのバインディングの可視性のように、すばらしいことがたくさんあります。クレジットは本当にここにプラグインを作っている人に行くhttps://github.com/MvvmCross/MvvmCross-Plugins/tree/master/Visibility –