├── .gitattributes ├── .gitignore ├── .mfractor └── Xamarin.Forms.MultiSelectListView.2f118d44-a45c-42ba-9e9e-14ff3044b6db.db ├── MultiSelectListViewSample.sln ├── MultiSelectListViewSample ├── MultiSelectListViewSample.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── MultiSelectListViewSample.Android.csproj │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable-hdpi │ │ ├── icon.png │ │ └── select.png │ │ ├── drawable-xhdpi │ │ ├── icon.png │ │ └── select.png │ │ ├── drawable-xxhdpi │ │ ├── icon.png │ │ └── select.png │ │ ├── drawable │ │ ├── icon.png │ │ └── select.png │ │ ├── layout │ │ ├── Main.axml │ │ ├── Tabbar.axml │ │ └── Toolbar.axml │ │ ├── mipmap-hdpi │ │ └── Icon.png │ │ ├── mipmap-mdpi │ │ └── Icon.png │ │ ├── mipmap-xhdpi │ │ └── Icon.png │ │ ├── mipmap-xxhdpi │ │ └── Icon.png │ │ ├── mipmap-xxxhdpi │ │ └── Icon.png │ │ └── values │ │ ├── Strings.xml │ │ └── styles.xml ├── MultiSelectListViewSample.iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── MultiSelectListViewSample.iOS.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small-40@3x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ ├── LaunchScreen.storyboard │ │ └── select.png │ └── packages.config └── MultiSelectListViewSample │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Models │ └── User.cs │ ├── MultiSelectListViewSample.csproj │ ├── Resources │ └── select.png │ └── ViewModel │ └── MainViewModel.cs ├── README.md ├── Resources ├── MultiSelectListViewIcon.png └── select.png ├── Xamarin.Forms.MultiSelectListView.sln └── Xamarin.Forms.MultiSelectListView ├── Behaviors ├── InheritBindingBehavior.cs └── SelectedItemBehavior.cs ├── Controls ├── MultiSelect.cs ├── MultiSelectObservableCollection.cs ├── SelectableCell.cs └── SelectableItem.cs ├── MultiSelectListViewIcon.ico └── Xamarin.Forms.MultiSelectListView.csproj /.gitattributes: -------------------------------------------------------------------------------- 1 | ############################################################################### 2 | # Set default behavior to automatically normalize line endings. 3 | ############################################################################### 4 | * text=auto 5 | 6 | ############################################################################### 7 | # Set default behavior for command prompt diff. 8 | # 9 | # This is need for earlier builds of msysgit that does not have it on by 10 | # default for csharp files. 11 | # Note: This is only used by command line 12 | ############################################################################### 13 | #*.cs diff=csharp 14 | 15 | ############################################################################### 16 | # Set the merge driver for project and solution files 17 | # 18 | # Merging from the command prompt will add diff markers to the files if there 19 | # are conflicts (Merging from VS is not affected by the settings below, in VS 20 | # the diff markers are never inserted). Diff markers may cause the following 21 | # file extensions to fail to load in VS. An alternative would be to treat 22 | # these files as binary and thus will always conflict and require user 23 | # intervention with every merge. To do so, just uncomment the entries below 24 | ############################################################################### 25 | #*.sln merge=binary 26 | #*.csproj merge=binary 27 | #*.vbproj merge=binary 28 | #*.vcxproj merge=binary 29 | #*.vcproj merge=binary 30 | #*.dbproj merge=binary 31 | #*.fsproj merge=binary 32 | #*.lsproj merge=binary 33 | #*.wixproj merge=binary 34 | #*.modelproj merge=binary 35 | #*.sqlproj merge=binary 36 | #*.wwaproj merge=binary 37 | 38 | ############################################################################### 39 | # behavior for image files 40 | # 41 | # image files are treated as binary by default. 42 | ############################################################################### 43 | #*.jpg binary 44 | #*.png binary 45 | #*.gif binary 46 | 47 | ############################################################################### 48 | # diff behavior for common document formats 49 | # 50 | # Convert binary document formats to text before diffing them. This feature 51 | # is only available from the command line. Turn it on by uncommenting the 52 | # entries below. 53 | ############################################################################### 54 | #*.doc diff=astextplain 55 | #*.DOC diff=astextplain 56 | #*.docx diff=astextplain 57 | #*.DOCX diff=astextplain 58 | #*.dot diff=astextplain 59 | #*.DOT diff=astextplain 60 | #*.pdf diff=astextplain 61 | #*.PDF diff=astextplain 62 | #*.rtf diff=astextplain 63 | #*.RTF diff=astextplain 64 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.userosscache 8 | *.sln.docstates 9 | 10 | # User-specific files (MonoDevelop/Xamarin Studio) 11 | *.userprefs 12 | 13 | # Build results 14 | [Dd]ebug/ 15 | [Dd]ebugPublic/ 16 | [Rr]elease/ 17 | [Rr]eleases/ 18 | x64/ 19 | x86/ 20 | bld/ 21 | [Bb]in/ 22 | [Oo]bj/ 23 | [Ll]og/ 24 | 25 | # Visual Studio 2015 cache/options directory 26 | .vs/ 27 | # Uncomment if you have tasks that create the project's static files in wwwroot 28 | #wwwroot/ 29 | 30 | # MSTest test Results 31 | [Tt]est[Rr]esult*/ 32 | [Bb]uild[Ll]og.* 33 | 34 | # NUNIT 35 | *.VisualState.xml 36 | TestResult.xml 37 | 38 | # Build Results of an ATL Project 39 | [Dd]ebugPS/ 40 | [Rr]eleasePS/ 41 | dlldata.c 42 | 43 | # DNX 44 | project.lock.json 45 | project.fragment.lock.json 46 | artifacts/ 47 | 48 | *_i.c 49 | *_p.c 50 | *_i.h 51 | *.ilk 52 | *.meta 53 | *.obj 54 | *.pch 55 | *.pdb 56 | *.pgc 57 | *.pgd 58 | *.rsp 59 | *.sbr 60 | *.tlb 61 | *.tli 62 | *.tlh 63 | *.tmp 64 | *.tmp_proj 65 | *.log 66 | *.vspscc 67 | *.vssscc 68 | .builds 69 | *.pidb 70 | *.svclog 71 | *.scc 72 | 73 | # Chutzpah Test files 74 | _Chutzpah* 75 | 76 | # Visual C++ cache files 77 | ipch/ 78 | *.aps 79 | *.ncb 80 | *.opendb 81 | *.opensdf 82 | *.sdf 83 | *.cachefile 84 | *.VC.db 85 | *.VC.VC.opendb 86 | 87 | # Visual Studio profiler 88 | *.psess 89 | *.vsp 90 | *.vspx 91 | *.sap 92 | 93 | # TFS 2012 Local Workspace 94 | $tf/ 95 | 96 | # Guidance Automation Toolkit 97 | *.gpState 98 | 99 | # ReSharper is a .NET coding add-in 100 | _ReSharper*/ 101 | *.[Rr]e[Ss]harper 102 | *.DotSettings.user 103 | 104 | # JustCode is a .NET coding add-in 105 | .JustCode 106 | 107 | # TeamCity is a build add-in 108 | _TeamCity* 109 | 110 | # DotCover is a Code Coverage Tool 111 | *.dotCover 112 | 113 | # NCrunch 114 | _NCrunch_* 115 | .*crunch*.local.xml 116 | nCrunchTemp_* 117 | 118 | # MightyMoose 119 | *.mm.* 120 | AutoTest.Net/ 121 | 122 | # Web workbench (sass) 123 | .sass-cache/ 124 | 125 | # Installshield output folder 126 | [Ee]xpress/ 127 | 128 | # DocProject is a documentation generator add-in 129 | DocProject/buildhelp/ 130 | DocProject/Help/*.HxT 131 | DocProject/Help/*.HxC 132 | DocProject/Help/*.hhc 133 | DocProject/Help/*.hhk 134 | DocProject/Help/*.hhp 135 | DocProject/Help/Html2 136 | DocProject/Help/html 137 | 138 | # Click-Once directory 139 | publish/ 140 | 141 | # Publish Web Output 142 | *.[Pp]ublish.xml 143 | *.azurePubxml 144 | # TODO: Comment the next line if you want to checkin your web deploy settings 145 | # but database connection strings (with potential passwords) will be unencrypted 146 | #*.pubxml 147 | *.publishproj 148 | 149 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 150 | # checkin your Azure Web App publish settings, but sensitive information contained 151 | # in these scripts will be unencrypted 152 | PublishScripts/ 153 | 154 | # NuGet Packages 155 | *.nupkg 156 | # The packages folder can be ignored because of Package Restore 157 | **/packages/* 158 | # except build/, which is used as an MSBuild target. 159 | !**/packages/build/ 160 | # Uncomment if necessary however generally it will be regenerated when needed 161 | #!**/packages/repositories.config 162 | # NuGet v3's project.json files produces more ignoreable files 163 | *.nuget.props 164 | *.nuget.targets 165 | 166 | # Microsoft Azure Build Output 167 | csx/ 168 | *.build.csdef 169 | 170 | # Microsoft Azure Emulator 171 | ecf/ 172 | rcf/ 173 | 174 | # Windows Store app package directories and files 175 | AppPackages/ 176 | BundleArtifacts/ 177 | Package.StoreAssociation.xml 178 | _pkginfo.txt 179 | 180 | # Visual Studio cache files 181 | # files ending in .cache can be ignored 182 | *.[Cc]ache 183 | # but keep track of directories ending in .cache 184 | !*.[Cc]ache/ 185 | 186 | # Others 187 | ClientBin/ 188 | ~$* 189 | *~ 190 | *.dbmdl 191 | *.dbproj.schemaview 192 | *.jfm 193 | *.pfx 194 | *.publishsettings 195 | node_modules/ 196 | orleans.codegen.cs 197 | 198 | # Since there are multiple workflows, uncomment next line to ignore bower_components 199 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 200 | #bower_components/ 201 | 202 | # RIA/Silverlight projects 203 | Generated_Code/ 204 | 205 | # Backup & report files from converting an old project file 206 | # to a newer Visual Studio version. Backup files are not needed, 207 | # because we have git ;-) 208 | _UpgradeReport_Files/ 209 | Backup*/ 210 | UpgradeLog*.XML 211 | UpgradeLog*.htm 212 | 213 | # SQL Server files 214 | *.mdf 215 | *.ldf 216 | 217 | # Business Intelligence projects 218 | *.rdl.data 219 | *.bim.layout 220 | *.bim_*.settings 221 | 222 | # Microsoft Fakes 223 | FakesAssemblies/ 224 | 225 | # GhostDoc plugin setting file 226 | *.GhostDoc.xml 227 | 228 | # Node.js Tools for Visual Studio 229 | .ntvs_analysis.dat 230 | 231 | # Visual Studio 6 build log 232 | *.plg 233 | 234 | # Visual Studio 6 workspace options file 235 | *.opt 236 | 237 | # Visual Studio LightSwitch build output 238 | **/*.HTMLClient/GeneratedArtifacts 239 | **/*.DesktopClient/GeneratedArtifacts 240 | **/*.DesktopClient/ModelManifest.xml 241 | **/*.Server/GeneratedArtifacts 242 | **/*.Server/ModelManifest.xml 243 | _Pvt_Extensions 244 | 245 | # Paket dependency manager 246 | .paket/paket.exe 247 | paket-files/ 248 | 249 | # FAKE - F# Make 250 | .fake/ 251 | 252 | # JetBrains Rider 253 | .idea/ 254 | *.sln.iml 255 | 256 | # CodeRush 257 | .cr/ 258 | 259 | # Python Tools for Visual Studio (PTVS) 260 | __pycache__/ 261 | *.pyc -------------------------------------------------------------------------------- /.mfractor/Xamarin.Forms.MultiSelectListView.2f118d44-a45c-42ba-9e9e-14ff3044b6db.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBertuzzi/Xamarin.Forms.MultiSelectListView/56b4c9614e5b2f6e1d3e8262365e4067cb66cb85/.mfractor/Xamarin.Forms.MultiSelectListView.2f118d44-a45c-42ba-9e9e-14ff3044b6db.db -------------------------------------------------------------------------------- /MultiSelectListViewSample.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.27130.2036 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiSelectListViewSample.Android", "MultiSelectListViewSample\MultiSelectListViewSample.Android\MultiSelectListViewSample.Android.csproj", "{8B453E8F-818C-4D8F-8587-D3795FBDAB41}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiSelectListViewSample.iOS", "MultiSelectListViewSample\MultiSelectListViewSample.iOS\MultiSelectListViewSample.iOS.csproj", "{D7C13468-DC85-4221-9A12-098B32EF0A77}" 9 | EndProject 10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiSelectListViewSample", "MultiSelectListViewSample\MultiSelectListViewSample\MultiSelectListViewSample.csproj", "{C30DA23E-43BB-4A75-AD21-CDED53601DF8}" 11 | EndProject 12 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Xamarin.Forms.MultiSelectListView", "Xamarin.Forms.MultiSelectListView\Xamarin.Forms.MultiSelectListView.csproj", "{D678F151-7695-4711-BD2F-461741434B25}" 13 | EndProject 14 | Global 15 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 16 | Ad-Hoc|Any CPU = Ad-Hoc|Any CPU 17 | Ad-Hoc|ARM = Ad-Hoc|ARM 18 | Ad-Hoc|iPhone = Ad-Hoc|iPhone 19 | Ad-Hoc|iPhoneSimulator = Ad-Hoc|iPhoneSimulator 20 | Ad-Hoc|x64 = Ad-Hoc|x64 21 | Ad-Hoc|x86 = Ad-Hoc|x86 22 | AppStore|Any CPU = AppStore|Any CPU 23 | AppStore|ARM = AppStore|ARM 24 | AppStore|iPhone = AppStore|iPhone 25 | AppStore|iPhoneSimulator = AppStore|iPhoneSimulator 26 | AppStore|x64 = AppStore|x64 27 | AppStore|x86 = AppStore|x86 28 | Debug|Any CPU = Debug|Any CPU 29 | Debug|ARM = Debug|ARM 30 | Debug|iPhone = Debug|iPhone 31 | Debug|iPhoneSimulator = Debug|iPhoneSimulator 32 | Debug|x64 = Debug|x64 33 | Debug|x86 = Debug|x86 34 | Release|Any CPU = Release|Any CPU 35 | Release|ARM = Release|ARM 36 | Release|iPhone = Release|iPhone 37 | Release|iPhoneSimulator = Release|iPhoneSimulator 38 | Release|x64 = Release|x64 39 | Release|x86 = Release|x86 40 | EndGlobalSection 41 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 42 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU 43 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU 44 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU 45 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU 46 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Ad-Hoc|ARM.Build.0 = Release|Any CPU 47 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Ad-Hoc|ARM.Deploy.0 = Release|Any CPU 48 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU 49 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU 50 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Ad-Hoc|iPhone.Deploy.0 = Release|Any CPU 51 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU 52 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU 53 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|Any CPU 54 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU 55 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Ad-Hoc|x64.Build.0 = Release|Any CPU 56 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Ad-Hoc|x64.Deploy.0 = Release|Any CPU 57 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU 58 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Ad-Hoc|x86.Build.0 = Release|Any CPU 59 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Ad-Hoc|x86.Deploy.0 = Release|Any CPU 60 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.AppStore|Any CPU.ActiveCfg = Release|Any CPU 61 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.AppStore|Any CPU.Build.0 = Release|Any CPU 62 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.AppStore|Any CPU.Deploy.0 = Release|Any CPU 63 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.AppStore|ARM.ActiveCfg = Release|Any CPU 64 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.AppStore|ARM.Build.0 = Release|Any CPU 65 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.AppStore|ARM.Deploy.0 = Release|Any CPU 66 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.AppStore|iPhone.ActiveCfg = Release|Any CPU 67 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.AppStore|iPhone.Build.0 = Release|Any CPU 68 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.AppStore|iPhone.Deploy.0 = Release|Any CPU 69 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU 70 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU 71 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.AppStore|iPhoneSimulator.Deploy.0 = Release|Any CPU 72 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.AppStore|x64.ActiveCfg = Release|Any CPU 73 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.AppStore|x64.Build.0 = Release|Any CPU 74 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.AppStore|x64.Deploy.0 = Release|Any CPU 75 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.AppStore|x86.ActiveCfg = Release|Any CPU 76 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.AppStore|x86.Build.0 = Release|Any CPU 77 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.AppStore|x86.Deploy.0 = Release|Any CPU 78 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 79 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Debug|Any CPU.Build.0 = Debug|Any CPU 80 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 81 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Debug|ARM.ActiveCfg = Debug|Any CPU 82 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Debug|ARM.Build.0 = Debug|Any CPU 83 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Debug|ARM.Deploy.0 = Debug|Any CPU 84 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Debug|iPhone.ActiveCfg = Debug|Any CPU 85 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Debug|iPhone.Build.0 = Debug|Any CPU 86 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Debug|iPhone.Deploy.0 = Debug|Any CPU 87 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 88 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 89 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU 90 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Debug|x64.ActiveCfg = Debug|Any CPU 91 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Debug|x64.Build.0 = Debug|Any CPU 92 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Debug|x64.Deploy.0 = Debug|Any CPU 93 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Debug|x86.ActiveCfg = Debug|Any CPU 94 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Debug|x86.Build.0 = Debug|Any CPU 95 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Debug|x86.Deploy.0 = Debug|Any CPU 96 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Release|Any CPU.ActiveCfg = Release|Any CPU 97 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Release|Any CPU.Build.0 = Release|Any CPU 98 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Release|Any CPU.Deploy.0 = Release|Any CPU 99 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Release|ARM.ActiveCfg = Release|Any CPU 100 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Release|ARM.Build.0 = Release|Any CPU 101 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Release|ARM.Deploy.0 = Release|Any CPU 102 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Release|iPhone.ActiveCfg = Release|Any CPU 103 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Release|iPhone.Build.0 = Release|Any CPU 104 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Release|iPhone.Deploy.0 = Release|Any CPU 105 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 106 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 107 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU 108 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Release|x64.ActiveCfg = Release|Any CPU 109 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Release|x64.Build.0 = Release|Any CPU 110 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Release|x64.Deploy.0 = Release|Any CPU 111 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Release|x86.ActiveCfg = Release|Any CPU 112 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Release|x86.Build.0 = Release|Any CPU 113 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41}.Release|x86.Deploy.0 = Release|Any CPU 114 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhone 115 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Ad-Hoc|ARM.ActiveCfg = Ad-Hoc|iPhone 116 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone 117 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone 118 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator 119 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator 120 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Ad-Hoc|x64.ActiveCfg = Ad-Hoc|iPhone 121 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Ad-Hoc|x86.ActiveCfg = Ad-Hoc|iPhone 122 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.AppStore|Any CPU.ActiveCfg = AppStore|iPhone 123 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.AppStore|ARM.ActiveCfg = AppStore|iPhone 124 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.AppStore|iPhone.ActiveCfg = AppStore|iPhone 125 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.AppStore|iPhone.Build.0 = AppStore|iPhone 126 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator 127 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator 128 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.AppStore|x64.ActiveCfg = AppStore|iPhone 129 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.AppStore|x86.ActiveCfg = AppStore|iPhone 130 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Debug|Any CPU.ActiveCfg = Debug|iPhone 131 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Debug|ARM.ActiveCfg = Debug|iPhone 132 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Debug|iPhone.ActiveCfg = Debug|iPhone 133 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Debug|iPhone.Build.0 = Debug|iPhone 134 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator 135 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator 136 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Debug|x64.ActiveCfg = Debug|iPhone 137 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Debug|x86.ActiveCfg = Debug|iPhone 138 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Release|Any CPU.ActiveCfg = Release|iPhone 139 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Release|ARM.ActiveCfg = Release|iPhone 140 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Release|iPhone.ActiveCfg = Release|iPhone 141 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Release|iPhone.Build.0 = Release|iPhone 142 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator 143 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator 144 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Release|x64.ActiveCfg = Release|iPhone 145 | {D7C13468-DC85-4221-9A12-098B32EF0A77}.Release|x86.ActiveCfg = Release|iPhone 146 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Ad-Hoc|Any CPU.ActiveCfg = Debug|Any CPU 147 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Ad-Hoc|Any CPU.Build.0 = Debug|Any CPU 148 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Ad-Hoc|ARM.ActiveCfg = Debug|Any CPU 149 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Ad-Hoc|ARM.Build.0 = Debug|Any CPU 150 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU 151 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU 152 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Debug|Any CPU 153 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Ad-Hoc|iPhoneSimulator.Build.0 = Debug|Any CPU 154 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Ad-Hoc|x64.ActiveCfg = Debug|Any CPU 155 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Ad-Hoc|x64.Build.0 = Debug|Any CPU 156 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Ad-Hoc|x86.ActiveCfg = Debug|Any CPU 157 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Ad-Hoc|x86.Build.0 = Debug|Any CPU 158 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.AppStore|Any CPU.ActiveCfg = Debug|Any CPU 159 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.AppStore|Any CPU.Build.0 = Debug|Any CPU 160 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.AppStore|ARM.ActiveCfg = Debug|Any CPU 161 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.AppStore|ARM.Build.0 = Debug|Any CPU 162 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.AppStore|iPhone.ActiveCfg = Debug|Any CPU 163 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.AppStore|iPhone.Build.0 = Debug|Any CPU 164 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.AppStore|iPhoneSimulator.ActiveCfg = Debug|Any CPU 165 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.AppStore|iPhoneSimulator.Build.0 = Debug|Any CPU 166 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.AppStore|x64.ActiveCfg = Debug|Any CPU 167 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.AppStore|x64.Build.0 = Debug|Any CPU 168 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.AppStore|x86.ActiveCfg = Debug|Any CPU 169 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.AppStore|x86.Build.0 = Debug|Any CPU 170 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 171 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Debug|Any CPU.Build.0 = Debug|Any CPU 172 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Debug|ARM.ActiveCfg = Debug|Any CPU 173 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Debug|ARM.Build.0 = Debug|Any CPU 174 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Debug|iPhone.ActiveCfg = Debug|Any CPU 175 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Debug|iPhone.Build.0 = Debug|Any CPU 176 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 177 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 178 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Debug|x64.ActiveCfg = Debug|Any CPU 179 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Debug|x64.Build.0 = Debug|Any CPU 180 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Debug|x86.ActiveCfg = Debug|Any CPU 181 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Debug|x86.Build.0 = Debug|Any CPU 182 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Release|Any CPU.ActiveCfg = Release|Any CPU 183 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Release|Any CPU.Build.0 = Release|Any CPU 184 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Release|ARM.ActiveCfg = Release|Any CPU 185 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Release|ARM.Build.0 = Release|Any CPU 186 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Release|iPhone.ActiveCfg = Release|Any CPU 187 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Release|iPhone.Build.0 = Release|Any CPU 188 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 189 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 190 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Release|x64.ActiveCfg = Release|Any CPU 191 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Release|x64.Build.0 = Release|Any CPU 192 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Release|x86.ActiveCfg = Release|Any CPU 193 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8}.Release|x86.Build.0 = Release|Any CPU 194 | {D678F151-7695-4711-BD2F-461741434B25}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU 195 | {D678F151-7695-4711-BD2F-461741434B25}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU 196 | {D678F151-7695-4711-BD2F-461741434B25}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU 197 | {D678F151-7695-4711-BD2F-461741434B25}.Ad-Hoc|ARM.Build.0 = Release|Any CPU 198 | {D678F151-7695-4711-BD2F-461741434B25}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU 199 | {D678F151-7695-4711-BD2F-461741434B25}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU 200 | {D678F151-7695-4711-BD2F-461741434B25}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU 201 | {D678F151-7695-4711-BD2F-461741434B25}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU 202 | {D678F151-7695-4711-BD2F-461741434B25}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU 203 | {D678F151-7695-4711-BD2F-461741434B25}.Ad-Hoc|x64.Build.0 = Release|Any CPU 204 | {D678F151-7695-4711-BD2F-461741434B25}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU 205 | {D678F151-7695-4711-BD2F-461741434B25}.Ad-Hoc|x86.Build.0 = Release|Any CPU 206 | {D678F151-7695-4711-BD2F-461741434B25}.AppStore|Any CPU.ActiveCfg = Release|Any CPU 207 | {D678F151-7695-4711-BD2F-461741434B25}.AppStore|Any CPU.Build.0 = Release|Any CPU 208 | {D678F151-7695-4711-BD2F-461741434B25}.AppStore|ARM.ActiveCfg = Release|Any CPU 209 | {D678F151-7695-4711-BD2F-461741434B25}.AppStore|ARM.Build.0 = Release|Any CPU 210 | {D678F151-7695-4711-BD2F-461741434B25}.AppStore|iPhone.ActiveCfg = Release|Any CPU 211 | {D678F151-7695-4711-BD2F-461741434B25}.AppStore|iPhone.Build.0 = Release|Any CPU 212 | {D678F151-7695-4711-BD2F-461741434B25}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU 213 | {D678F151-7695-4711-BD2F-461741434B25}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU 214 | {D678F151-7695-4711-BD2F-461741434B25}.AppStore|x64.ActiveCfg = Release|Any CPU 215 | {D678F151-7695-4711-BD2F-461741434B25}.AppStore|x64.Build.0 = Release|Any CPU 216 | {D678F151-7695-4711-BD2F-461741434B25}.AppStore|x86.ActiveCfg = Release|Any CPU 217 | {D678F151-7695-4711-BD2F-461741434B25}.AppStore|x86.Build.0 = Release|Any CPU 218 | {D678F151-7695-4711-BD2F-461741434B25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 219 | {D678F151-7695-4711-BD2F-461741434B25}.Debug|Any CPU.Build.0 = Debug|Any CPU 220 | {D678F151-7695-4711-BD2F-461741434B25}.Debug|ARM.ActiveCfg = Debug|Any CPU 221 | {D678F151-7695-4711-BD2F-461741434B25}.Debug|ARM.Build.0 = Debug|Any CPU 222 | {D678F151-7695-4711-BD2F-461741434B25}.Debug|iPhone.ActiveCfg = Debug|Any CPU 223 | {D678F151-7695-4711-BD2F-461741434B25}.Debug|iPhone.Build.0 = Debug|Any CPU 224 | {D678F151-7695-4711-BD2F-461741434B25}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 225 | {D678F151-7695-4711-BD2F-461741434B25}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 226 | {D678F151-7695-4711-BD2F-461741434B25}.Debug|x64.ActiveCfg = Debug|Any CPU 227 | {D678F151-7695-4711-BD2F-461741434B25}.Debug|x64.Build.0 = Debug|Any CPU 228 | {D678F151-7695-4711-BD2F-461741434B25}.Debug|x86.ActiveCfg = Debug|Any CPU 229 | {D678F151-7695-4711-BD2F-461741434B25}.Debug|x86.Build.0 = Debug|Any CPU 230 | {D678F151-7695-4711-BD2F-461741434B25}.Release|Any CPU.ActiveCfg = Release|Any CPU 231 | {D678F151-7695-4711-BD2F-461741434B25}.Release|Any CPU.Build.0 = Release|Any CPU 232 | {D678F151-7695-4711-BD2F-461741434B25}.Release|ARM.ActiveCfg = Release|Any CPU 233 | {D678F151-7695-4711-BD2F-461741434B25}.Release|ARM.Build.0 = Release|Any CPU 234 | {D678F151-7695-4711-BD2F-461741434B25}.Release|iPhone.ActiveCfg = Release|Any CPU 235 | {D678F151-7695-4711-BD2F-461741434B25}.Release|iPhone.Build.0 = Release|Any CPU 236 | {D678F151-7695-4711-BD2F-461741434B25}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 237 | {D678F151-7695-4711-BD2F-461741434B25}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 238 | {D678F151-7695-4711-BD2F-461741434B25}.Release|x64.ActiveCfg = Release|Any CPU 239 | {D678F151-7695-4711-BD2F-461741434B25}.Release|x64.Build.0 = Release|Any CPU 240 | {D678F151-7695-4711-BD2F-461741434B25}.Release|x86.ActiveCfg = Release|Any CPU 241 | {D678F151-7695-4711-BD2F-461741434B25}.Release|x86.Build.0 = Release|Any CPU 242 | EndGlobalSection 243 | GlobalSection(SolutionProperties) = preSolution 244 | HideSolutionNode = FALSE 245 | EndGlobalSection 246 | GlobalSection(ExtensibilityGlobals) = postSolution 247 | SolutionGuid = {BECCC206-DE63-480E-9A85-A6E53603B789} 248 | EndGlobalSection 249 | EndGlobal 250 | -------------------------------------------------------------------------------- /MultiSelectListViewSample/MultiSelectListViewSample.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- 1 | Any raw assets you want to be deployed with your application can be placed in 2 | this directory (and child directories) and given a Build Action of "AndroidAsset". 3 | 4 | These files will be deployed with you package and will be accessible using Android's 5 | AssetManager, like this: 6 | 7 | public class ReadAsset : Activity 8 | { 9 | protected override void OnCreate (Bundle bundle) 10 | { 11 | base.OnCreate (bundle); 12 | 13 | InputStream input = Assets.Open ("my_asset.txt"); 14 | } 15 | } 16 | 17 | Additionally, some Android functions will automatically load asset files: 18 | 19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); 20 | -------------------------------------------------------------------------------- /MultiSelectListViewSample/MultiSelectListViewSample.Android/MainActivity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | using Android.App; 4 | using Android.Content.PM; 5 | using Android.Runtime; 6 | using Android.Views; 7 | using Android.Widget; 8 | using Android.OS; 9 | 10 | namespace MultiSelectListViewSample.Droid 11 | { 12 | [Activity(Label = "MultiSelectListViewSample", Icon = "@drawable/icon", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)] 13 | public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity 14 | { 15 | protected override void OnCreate(Bundle bundle) 16 | { 17 | TabLayoutResource = Resource.Layout.Tabbar; 18 | ToolbarResource = Resource.Layout.Toolbar; 19 | 20 | base.OnCreate(bundle); 21 | 22 | global::Xamarin.Forms.Forms.Init(this, bundle); 23 | LoadApplication(new App()); 24 | } 25 | } 26 | } 27 | 28 | -------------------------------------------------------------------------------- /MultiSelectListViewSample/MultiSelectListViewSample.Android/MultiSelectListViewSample.Android.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Debug 5 | AnyCPU 6 | {8B453E8F-818C-4D8F-8587-D3795FBDAB41} 7 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 8 | Library 9 | MultiSelectListViewSample.Droid 10 | MultiSelectListViewSample.Android 11 | v9.0 12 | True 13 | Resources\Resource.designer.cs 14 | Resource 15 | Properties\AndroidManifest.xml 16 | Resources 17 | Assets 18 | 19 | 20 | 21 | 22 | true 23 | full 24 | false 25 | bin\Debug 26 | DEBUG; 27 | prompt 28 | 4 29 | None 30 | 31 | 32 | true 33 | pdbonly 34 | true 35 | bin\Release 36 | prompt 37 | 4 38 | true 39 | false 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 5.0.0.2125 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | Designer 81 | 82 | 83 | 84 | 85 | {C30DA23E-43BB-4A75-AD21-CDED53601DF8} 86 | MultiSelectListViewSample 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /MultiSelectListViewSample/MultiSelectListViewSample.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /MultiSelectListViewSample/MultiSelectListViewSample.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | using Android.App; 5 | 6 | // General Information about an assembly is controlled through the following 7 | // set of attributes. Change these attribute values to modify the information 8 | // associated with an assembly. 9 | [assembly: AssemblyTitle("MultiSelectListViewSample.Android")] 10 | [assembly: AssemblyDescription("")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("")] 13 | [assembly: AssemblyProduct("MultiSelectListViewSample.Android")] 14 | [assembly: AssemblyCopyright("Copyright © 2014")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | [assembly: ComVisible(false)] 18 | 19 | // Version information for an assembly consists of the following four values: 20 | // 21 | // Major Version 22 | // Minor Version 23 | // Build Number 24 | // Revision 25 | // 26 | // You can specify all the values or you can default the Build and Revision Numbers 27 | // by using the '*' as shown below: 28 | // [assembly: AssemblyVersion("1.0.*")] 29 | [assembly: AssemblyVersion("1.0.0.0")] 30 | [assembly: AssemblyFileVersion("1.0.0.0")] 31 | 32 | // Add some common permissions, these can be removed if not needed 33 | [assembly: UsesPermission(Android.Manifest.Permission.Internet)] 34 | [assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)] 35 | -------------------------------------------------------------------------------- /MultiSelectListViewSample/MultiSelectListViewSample.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- 1 | Images, layout descriptions, binary blobs and string dictionaries can be included 2 | in your application as resource files. Various Android APIs are designed to 3 | operate on the resource IDs instead of dealing with images, strings or binary blobs 4 | directly. 5 | 6 | For example, a sample Android app that contains a user interface layout (main.xml), 7 | an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png) 8 | would keep its resources in the "Resources" directory of the application: 9 | 10 | Resources/ 11 | drawable-hdpi/ 12 | icon.png 13 | 14 | drawable-ldpi/ 15 | icon.png 16 | 17 | drawable-mdpi/ 18 | icon.png 19 | 20 | layout/ 21 | main.xml 22 | 23 | values/ 24 | strings.xml 25 | 26 | In order to get the build system to recognize Android resources, set the build action to 27 | "AndroidResource". The native Android APIs do not operate directly with filenames, but 28 | instead operate on resource IDs. When you compile an Android application that uses resources, 29 | the build system will package the resources for distribution and generate a class called 30 | "Resource" that contains the tokens for each one of the resources included. For example, 31 | for the above Resources layout, this is what the Resource class would expose: 32 | 33 | public class Resource { 34 | public class drawable { 35 | public const int icon = 0x123; 36 | } 37 | 38 | public class layout { 39 | public const int main = 0x456; 40 | } 41 | 42 | public class strings { 43 | public const int first_string = 0xabc; 44 | public const int second_string = 0xbcd; 45 | } 46 | } 47 | 48 | You would then use R.drawable.icon to reference the drawable/icon.png file, or Resource.layout.main 49 | to reference the layout/main.xml file, or Resource.strings.first_string to reference the first 50 | string in the dictionary file values/strings.xml. 51 | -------------------------------------------------------------------------------- /MultiSelectListViewSample/MultiSelectListViewSample.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBertuzzi/Xamarin.Forms.MultiSelectListView/56b4c9614e5b2f6e1d3e8262365e4067cb66cb85/MultiSelectListViewSample/MultiSelectListViewSample.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /MultiSelectListViewSample/MultiSelectListViewSample.Android/Resources/drawable-hdpi/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBertuzzi/Xamarin.Forms.MultiSelectListView/56b4c9614e5b2f6e1d3e8262365e4067cb66cb85/MultiSelectListViewSample/MultiSelectListViewSample.Android/Resources/drawable-hdpi/select.png -------------------------------------------------------------------------------- /MultiSelectListViewSample/MultiSelectListViewSample.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBertuzzi/Xamarin.Forms.MultiSelectListView/56b4c9614e5b2f6e1d3e8262365e4067cb66cb85/MultiSelectListViewSample/MultiSelectListViewSample.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /MultiSelectListViewSample/MultiSelectListViewSample.Android/Resources/drawable-xhdpi/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBertuzzi/Xamarin.Forms.MultiSelectListView/56b4c9614e5b2f6e1d3e8262365e4067cb66cb85/MultiSelectListViewSample/MultiSelectListViewSample.Android/Resources/drawable-xhdpi/select.png -------------------------------------------------------------------------------- /MultiSelectListViewSample/MultiSelectListViewSample.Android/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBertuzzi/Xamarin.Forms.MultiSelectListView/56b4c9614e5b2f6e1d3e8262365e4067cb66cb85/MultiSelectListViewSample/MultiSelectListViewSample.Android/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /MultiSelectListViewSample/MultiSelectListViewSample.Android/Resources/drawable-xxhdpi/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBertuzzi/Xamarin.Forms.MultiSelectListView/56b4c9614e5b2f6e1d3e8262365e4067cb66cb85/MultiSelectListViewSample/MultiSelectListViewSample.Android/Resources/drawable-xxhdpi/select.png -------------------------------------------------------------------------------- /MultiSelectListViewSample/MultiSelectListViewSample.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBertuzzi/Xamarin.Forms.MultiSelectListView/56b4c9614e5b2f6e1d3e8262365e4067cb66cb85/MultiSelectListViewSample/MultiSelectListViewSample.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /MultiSelectListViewSample/MultiSelectListViewSample.Android/Resources/drawable/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TBertuzzi/Xamarin.Forms.MultiSelectListView/56b4c9614e5b2f6e1d3e8262365e4067cb66cb85/MultiSelectListViewSample/MultiSelectListViewSample.Android/Resources/drawable/select.png -------------------------------------------------------------------------------- /MultiSelectListViewSample/MultiSelectListViewSample.Android/Resources/layout/Main.axml: -------------------------------------------------------------------------------- 1 |  2 | 3 |