Tuesday, February 5, 2013

DeapExtensions Abbreviated NameSpace

Stuart Lodge just pointed out that I could use an abbreviated namespace so that the full DeapExtenions name does not have to be typed out in your Views. @cheesebaron has a blog post thats explains how to use it http://blog.ostebaronen.dk/2012/12/adding-view-namespace-abbreviations-in.html

I've updated the DeapExtensions to take advantage of this shortcut. Now you can just declare the BindableGroupListView as DeapExt.BindableGroupListView

<?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="{&apos;ItemsSource&apos;:{&apos;Path&apos;:&apos;SearchedProfiles&apos;},&apos;ItemClick&apos;:{&apos;Path&apos;:&apos;DeviceSelected&apos;}}" />
</LinearLayout>
view raw gistfile1.xml hosted with ❤ by GitHub
There, much neater :) Don't forget to the use the DeapExtensions.Binding.Droid.BaseAndroidBindingSetup as your base for your setup class. It simply registers the DeapExt with MvvmCross.

2 comments:

Slodge said...

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? ;)

Kevin said...

GroupClick definitely - on the todo list (and yes the Swiss syntax is nifty)