I've updated the DeapExtensions to take advantage of this shortcut. Now you can just declare the BindableGroupListView as DeapExt.BindableGroupListView
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:centrastage="http://schemas.android.com/apk/res/CentraStage.Droid" | |
android:orientation="vertical" | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent"> | |
<DeapExt.BindableGroupListView | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent" | |
android:orientation="vertical" | |
centrastage:MvxItemTemplate="@layout/listitem_device" | |
centrastage:GroupItemTemplate="@layout/listitem_profile" | |
centrastage:MvxBind="{'ItemsSource':{'Path':'SearchedProfiles'},'ItemClick':{'Path':'DeviceSelected'}}" /> | |
</LinearLayout> |
2 comments:
Neater still if you go Swiss: centrastage:MvxBind="ItemsSource SearchedProfiles;ItemClick DeviceSelected" />
Also... wondering whether there should be a GroupClick as well as an ItemClick? ;)
GroupClick definitely - on the todo list (and yes the Swiss syntax is nifty)
Post a Comment