Guest User

Untitled

a guest
Jul 11th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:local="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="horizontal">
  7. <MvxListView
  8. android:layout_height="match_parent"
  9. android:layout_width="match_parent"
  10. android:divider="#000000"
  11. android:dividerHeight="3px"
  12. local:MvxBind="ItemsSource Weather; ItemClick ListItemClickCommand"
  13. local:MvxItemTemplate="ItemTemplateId weatherListItem"
  14. SelectedItem="{mvx:MvxBind CurrentWeather}"/>
  15. </LinearLayout>
  16.  
  17. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  18. xmlns:local="http://schemas.android.com/apk/res-auto"
  19. android:orientation="vertical"
  20. android:layout_width="match_parent"
  21. android:layout_height="match_parent"
  22. android:background="#ffffff">
  23. <TextView
  24. android:layout_width="match_parent"
  25. android:layout_height="wrap_content"
  26. android:padding="2dp"
  27. android:layout_gravity="center_horizontal"
  28. local:MvxBind="Text WeatherName"/>
  29. </LinearLayout>
  30.  
  31. <?xml version="1.0" encoding="utf-8"?>
  32. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  33. xmlns:local="http://schemas.android.com/apk/res-auto"
  34. android:layout_width="match_parent"
  35. android:layout_height="match_parent"
  36. android:orientation="horizontal">
  37. <MvxListView
  38. android:layout_height="match_parent"
  39. android:layout_width="match_parent"
  40. android:divider="#000000"
  41. android:dividerHeight="3px"
  42. local:MvxBind="ItemsSource Weather; ItemClick ListItemClickCommand; SelectedItem CurrentWeather"
  43. local:MvxItemTemplate="@layout/weatherListItem"/>
  44. </LinearLayout>
Add Comment
Please, Sign In to add comment