【实例简介】
刚入门的xamarinandroid开发人员可以看看这个例子,主要写的就是listview如何绑定数据
【实例截图】
【核心代码】
ListView_Demo
└── DrawerLayout
├── Adapter
│ └── NewsAdapter.cs
├── Assets
│ └── AboutAssets.txt
├── bin
│ └── Debug
│ ├── DrawerLayout.dll
│ ├── DrawerLayout.dll.mdb
│ ├── DrawerLayout.DrawerLayout.apk
│ ├── DrawerLayout.DrawerLayout-Signed.apk
│ ├── DrawerLayout.pdb
│ ├── Java.Interop.dll.mdb
│ ├── Mono.Android.dll.mdb
│ ├── mscorlib.dll.mdb
│ ├── System.ComponentModel.Composition.dll.mdb
│ ├── System.Core.dll.mdb
│ ├── System.dll.mdb
│ ├── System.Net.Http.dll.mdb
│ ├── System.Runtime.Serialization.dll.mdb
│ ├── System.ServiceModel.Internals.dll.mdb
│ ├── System.Xml.dll.mdb
│ └── System.Xml.Linq.dll.mdb
├── DrawerLayout.csproj
├── DrawerLayout.csproj.user
├── GettingStarted.Xamarin
├── MainActivity.cs
├── obj
│ └── Debug
│ ├── 169.254.109.177_5555.deployment
│ ├── 5d99b870.deployment
│ ├── acw-map.txt
│ ├── android
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ │ ├── DrawerLayout.dll
│ │ │ ├── DrawerLayout.dll.mdb
│ │ │ ├── Java.Interop.dll
│ │ │ ├── Java.Interop.dll.mdb
│ │ │ ├── machine.config
│ │ │ ├── Mono.Android.dll
│ │ │ ├── Mono.Android.dll.mdb
│ │ │ ├── mscorlib.dll
│ │ │ ├── mscorlib.dll.mdb
│ │ │ ├── System.Collections.Concurrent.dll
│ │ │ ├── System.Collections.dll
│ │ │ ├── System.ComponentModel.Composition.dll
│ │ │ ├── System.ComponentModel.Composition.dll.mdb
│ │ │ ├── System.Core.dll
│ │ │ ├── System.Core.dll.mdb
│ │ │ ├── System.Diagnostics.Debug.dll
│ │ │ ├── System.dll
│ │ │ ├── System.dll.mdb
│ │ │ ├── System.Linq.dll
│ │ │ ├── System.Net.Http.dll
│ │ │ ├── System.Net.Http.dll.mdb
│ │ │ ├── System.Reflection.dll
│ │ │ ├── System.Reflection.Extensions.dll
│ │ │ ├── System.Runtime.dll
│ │ │ ├── System.Runtime.Extensions.dll
│ │ │ ├── System.Runtime.InteropServices.dll
│ │ │ ├── System.Runtime.Serialization.dll
│ │ │ ├── System.Runtime.Serialization.dll.mdb
│ │ │ ├── System.ServiceModel.Internals.dll
│ │ │ ├── System.ServiceModel.Internals.dll.mdb
│ │ │ ├── System.Threading.dll
│ │ │ ├── System.Xml.dll
│ │ │ ├── System.Xml.dll.mdb
│ │ │ ├── System.Xml.Linq.dll
│ │ │ └── System.Xml.Linq.dll.mdb
│ │ ├── bin
│ │ │ ├── classes
│ │ │ │ ├── drawerlayout
│ │ │ │ │ └── drawerlayout
│ │ │ │ │ ├── R$attr.class
│ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ ├── R$id.class
│ │ │ │ │ ├── R$layout.class
│ │ │ │ │ ├── R$string.class
│ │ │ │ │ └── R.class
│ │ │ │ ├── md59adcd3bff5cbf22cbf66195854df9f93
│ │ │ │ │ └── MainActivity.class
│ │ │ │ ├── md59da14d43f5a4988486e43180e4272e71
│ │ │ │ │ └── NewsAdapter.class
│ │ │ │ └── mono
│ │ │ │ ├── android
│ │ │ │ │ ├── app
│ │ │ │ │ │ ├── ApplicationRegistration.class
│ │ │ │ │ │ └── NotifyTimeZoneChanges.class
│ │ │ │ │ └── Seppuku.class
│ │ │ │ ├── MonoPackageManager.class
│ │ │ │ ├── MonoPackageManager_Resources.class
│ │ │ │ └── MonoRuntimeProvider.class
│ │ │ ├── classes.dex
│ │ │ ├── DrawerLayout.DrawerLayout.apk
│ │ │ ├── mono.android.jar
│ │ │ ├── packaged_resources
│ │ │ └── resources_and_assemblies
│ │ ├── drawerlayout
│ │ │ └── drawerlayout
│ │ │ └── R.java
│ │ ├── manifest
│ │ │ └── AndroidManifest.xml
│ │ ├── src
│ │ │ ├── drawerlayout
│ │ │ │ └── drawerlayout
│ │ │ │ └── R.java
│ │ │ ├── md59adcd3bff5cbf22cbf66195854df9f93
│ │ │ │ └── MainActivity.java
│ │ │ ├── md59da14d43f5a4988486e43180e4272e71
│ │ │ │ └── NewsAdapter.java
│ │ │ └── mono
│ │ │ ├── android
│ │ │ │ ├── app
│ │ │ │ │ ├── ApplicationRegistration.java
│ │ │ │ │ └── NotifyTimeZoneChanges.java
│ │ │ │ └── Seppuku.java
│ │ │ ├── MonoPackageManager.java
│ │ │ └── MonoRuntimeProvider.java
│ │ ├── typemap.jm
│ │ └── typemap.mj
│ ├── android_debug_keystore.flag
│ ├── build.props
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── _dex_stamp
│ ├── DrawerLayout.csproj.FileListAbsolute.txt
│ ├── DrawerLayout.csprojResolveAssemblyReference.cache
│ ├── DrawerLayout.dll
│ ├── DrawerLayout.pdb
│ ├── _javac.stamp
│ ├── libraryimports.cache
│ ├── libraryprojectimports.cache
│ ├── __library_projects__
│ │ ├── Java.Interop.stamp
│ │ └── System.Runtime.stamp
│ ├── linkdst
│ │ ├── DrawerLayout.dll
│ │ └── DrawerLayout.dll.mdb
│ ├── link.flag
│ ├── linksrc
│ │ ├── DrawerLayout.dll
│ │ ├── DrawerLayout.dll.mdb
│ │ ├── Java.Interop.dll
│ │ ├── Java.Interop.dll.mdb
│ │ ├── Mono.Android.dll
│ │ ├── Mono.Android.dll.mdb
│ │ ├── mscorlib.dll
│ │ ├── mscorlib.dll.mdb
│ │ ├── System.Collections.Concurrent.dll
│ │ ├── System.Collections.dll
│ │ ├── System.ComponentModel.Composition.dll
│ │ ├── System.ComponentModel.Composition.dll.mdb
│ │ ├── System.Core.dll
│ │ ├── System.Core.dll.mdb
│ │ ├── System.Diagnostics.Debug.dll
│ │ ├── System.dll
│ │ ├── System.dll.mdb
│ │ ├── System.Linq.dll
│ │ ├── System.Net.Http.dll
│ │ ├── System.Net.Http.dll.mdb
│ │ ├── System.Reflection.dll
│ │ ├── System.Reflection.Extensions.dll
│ │ ├── System.Runtime.dll
│ │ ├── System.Runtime.Extensions.dll
│ │ ├── System.Runtime.InteropServices.dll
│ │ ├── System.Runtime.Serialization.dll
│ │ ├── System.Runtime.Serialization.dll.mdb
│ │ ├── System.ServiceModel.Internals.dll
│ │ ├── System.ServiceModel.Internals.dll.mdb
│ │ ├── System.Threading.dll
│ │ ├── System.Xml.dll
│ │ ├── System.Xml.dll.mdb
│ │ ├── System.Xml.Linq.dll
│ │ └── System.Xml.Linq.dll.mdb
│ ├── R.cs.flag
│ ├── res
│ │ ├── drawable
│ │ │ └── icon.png
│ │ ├── layout
│ │ │ ├── lv_header.xml
│ │ │ ├── lv_test.xml
│ │ │ └── main.xml
│ │ └── values
│ │ └── strings.xml
│ ├── resolved_assemblies.txt
│ ├── resourcepaths.cache
│ ├── sdks.cache
│ ├── static.flag
│ ├── strip.flag
│ ├── stub_application_data.txt
│ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
├── Properties
│ ├── AndroidManifest.xml
│ └── AssemblyInfo.cs
└── Resources
├── AboutResources.txt
├── drawable
│ └── icon.png
├── layout
│ ├── lv_header.axml
│ ├── lv_test.axml
│ └── Main.axml
├── Resource.Designer.cs
└── values
└── Strings.xml
41 directories, 166 files