├── .gitattributes ├── .gitignore ├── ReactiveUIDemo.sln ├── ReactiveUIDemo ├── ReactiveUIDemo.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── ReactiveUIDemo.Android.csproj │ └── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable-hdpi │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ └── icon.png │ │ ├── drawable │ │ └── icon.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 ├── ReactiveUIDemo.UWP │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-100.png │ │ ├── LockScreenLogo.scale-125.png │ │ ├── LockScreenLogo.scale-150.png │ │ ├── LockScreenLogo.scale-200.png │ │ ├── LockScreenLogo.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-32_altform-unplated.png │ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ │ ├── StoreLogo.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── ReactiveUIDemo.UWP.csproj ├── ReactiveUIDemo.iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReactiveUIDemo.iOS.csproj │ ├── 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 │ └── packages.config └── ReactiveUIDemo │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppBootsrapper.cs │ ├── Model │ └── Todo.cs │ ├── ReactiveUIDemo.csproj │ ├── Services │ ├── ILogin.cs │ └── LoginService.cs │ ├── ViewModel │ ├── ItemsViewModel.cs │ ├── LoginViewModel.cs │ └── ViewModelBase.cs │ └── Views │ ├── ContentPageBase.cs │ ├── ItemsPage.xaml │ ├── ItemsPage.xaml.cs │ ├── LoginPage.xaml │ └── LoginPage.xaml.cs └── Readme.MD /.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 -------------------------------------------------------------------------------- /ReactiveUIDemo.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}") = "ReactiveUIDemo.Android", "ReactiveUIDemo\ReactiveUIDemo.Android\ReactiveUIDemo.Android.csproj", "{3E938382-A331-4D6E-90DA-866C3500F96A}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReactiveUIDemo.iOS", "ReactiveUIDemo\ReactiveUIDemo.iOS\ReactiveUIDemo.iOS.csproj", "{AC7B7007-8347-45B8-BA10-05A308B4EA31}" 9 | EndProject 10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReactiveUIDemo.UWP", "ReactiveUIDemo\ReactiveUIDemo.UWP\ReactiveUIDemo.UWP.csproj", "{EA9780BB-548E-4221-BBE7-05275F86A7F4}" 11 | EndProject 12 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReactiveUIDemo", "ReactiveUIDemo\ReactiveUIDemo\ReactiveUIDemo.csproj", "{C3060E03-DF8C-4422-8EA2-B80BF41DF56A}" 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 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU 43 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU 44 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU 45 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU 46 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Ad-Hoc|ARM.Build.0 = Release|Any CPU 47 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Ad-Hoc|ARM.Deploy.0 = Release|Any CPU 48 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU 49 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU 50 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Ad-Hoc|iPhone.Deploy.0 = Release|Any CPU 51 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU 52 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU 53 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|Any CPU 54 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU 55 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Ad-Hoc|x64.Build.0 = Release|Any CPU 56 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Ad-Hoc|x64.Deploy.0 = Release|Any CPU 57 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU 58 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Ad-Hoc|x86.Build.0 = Release|Any CPU 59 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Ad-Hoc|x86.Deploy.0 = Release|Any CPU 60 | {3E938382-A331-4D6E-90DA-866C3500F96A}.AppStore|Any CPU.ActiveCfg = Release|Any CPU 61 | {3E938382-A331-4D6E-90DA-866C3500F96A}.AppStore|Any CPU.Build.0 = Release|Any CPU 62 | {3E938382-A331-4D6E-90DA-866C3500F96A}.AppStore|Any CPU.Deploy.0 = Release|Any CPU 63 | {3E938382-A331-4D6E-90DA-866C3500F96A}.AppStore|ARM.ActiveCfg = Release|Any CPU 64 | {3E938382-A331-4D6E-90DA-866C3500F96A}.AppStore|ARM.Build.0 = Release|Any CPU 65 | {3E938382-A331-4D6E-90DA-866C3500F96A}.AppStore|ARM.Deploy.0 = Release|Any CPU 66 | {3E938382-A331-4D6E-90DA-866C3500F96A}.AppStore|iPhone.ActiveCfg = Release|Any CPU 67 | {3E938382-A331-4D6E-90DA-866C3500F96A}.AppStore|iPhone.Build.0 = Release|Any CPU 68 | {3E938382-A331-4D6E-90DA-866C3500F96A}.AppStore|iPhone.Deploy.0 = Release|Any CPU 69 | {3E938382-A331-4D6E-90DA-866C3500F96A}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU 70 | {3E938382-A331-4D6E-90DA-866C3500F96A}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU 71 | {3E938382-A331-4D6E-90DA-866C3500F96A}.AppStore|iPhoneSimulator.Deploy.0 = Release|Any CPU 72 | {3E938382-A331-4D6E-90DA-866C3500F96A}.AppStore|x64.ActiveCfg = Release|Any CPU 73 | {3E938382-A331-4D6E-90DA-866C3500F96A}.AppStore|x64.Build.0 = Release|Any CPU 74 | {3E938382-A331-4D6E-90DA-866C3500F96A}.AppStore|x64.Deploy.0 = Release|Any CPU 75 | {3E938382-A331-4D6E-90DA-866C3500F96A}.AppStore|x86.ActiveCfg = Release|Any CPU 76 | {3E938382-A331-4D6E-90DA-866C3500F96A}.AppStore|x86.Build.0 = Release|Any CPU 77 | {3E938382-A331-4D6E-90DA-866C3500F96A}.AppStore|x86.Deploy.0 = Release|Any CPU 78 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 79 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Debug|Any CPU.Build.0 = Debug|Any CPU 80 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 81 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Debug|ARM.ActiveCfg = Debug|Any CPU 82 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Debug|ARM.Build.0 = Debug|Any CPU 83 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Debug|ARM.Deploy.0 = Debug|Any CPU 84 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Debug|iPhone.ActiveCfg = Debug|Any CPU 85 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Debug|iPhone.Build.0 = Debug|Any CPU 86 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Debug|iPhone.Deploy.0 = Debug|Any CPU 87 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 88 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 89 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU 90 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Debug|x64.ActiveCfg = Debug|Any CPU 91 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Debug|x64.Build.0 = Debug|Any CPU 92 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Debug|x64.Deploy.0 = Debug|Any CPU 93 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Debug|x86.ActiveCfg = Debug|Any CPU 94 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Debug|x86.Build.0 = Debug|Any CPU 95 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Debug|x86.Deploy.0 = Debug|Any CPU 96 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Release|Any CPU.ActiveCfg = Release|Any CPU 97 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Release|Any CPU.Build.0 = Release|Any CPU 98 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Release|Any CPU.Deploy.0 = Release|Any CPU 99 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Release|ARM.ActiveCfg = Release|Any CPU 100 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Release|ARM.Build.0 = Release|Any CPU 101 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Release|ARM.Deploy.0 = Release|Any CPU 102 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Release|iPhone.ActiveCfg = Release|Any CPU 103 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Release|iPhone.Build.0 = Release|Any CPU 104 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Release|iPhone.Deploy.0 = Release|Any CPU 105 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 106 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 107 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU 108 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Release|x64.ActiveCfg = Release|Any CPU 109 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Release|x64.Build.0 = Release|Any CPU 110 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Release|x64.Deploy.0 = Release|Any CPU 111 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Release|x86.ActiveCfg = Release|Any CPU 112 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Release|x86.Build.0 = Release|Any CPU 113 | {3E938382-A331-4D6E-90DA-866C3500F96A}.Release|x86.Deploy.0 = Release|Any CPU 114 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhone 115 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Ad-Hoc|ARM.ActiveCfg = Ad-Hoc|iPhone 116 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone 117 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone 118 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator 119 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator 120 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Ad-Hoc|x64.ActiveCfg = Ad-Hoc|iPhone 121 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Ad-Hoc|x86.ActiveCfg = Ad-Hoc|iPhone 122 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.AppStore|Any CPU.ActiveCfg = AppStore|iPhone 123 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.AppStore|ARM.ActiveCfg = AppStore|iPhone 124 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.AppStore|iPhone.ActiveCfg = AppStore|iPhone 125 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.AppStore|iPhone.Build.0 = AppStore|iPhone 126 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator 127 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator 128 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.AppStore|x64.ActiveCfg = AppStore|iPhone 129 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.AppStore|x86.ActiveCfg = AppStore|iPhone 130 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Debug|Any CPU.ActiveCfg = Debug|iPhone 131 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Debug|ARM.ActiveCfg = Debug|iPhone 132 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Debug|iPhone.ActiveCfg = Debug|iPhone 133 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Debug|iPhone.Build.0 = Debug|iPhone 134 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator 135 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator 136 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Debug|x64.ActiveCfg = Debug|iPhone 137 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Debug|x86.ActiveCfg = Debug|iPhone 138 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Release|Any CPU.ActiveCfg = Release|iPhone 139 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Release|ARM.ActiveCfg = Release|iPhone 140 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Release|iPhone.ActiveCfg = Release|iPhone 141 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Release|iPhone.Build.0 = Release|iPhone 142 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator 143 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator 144 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Release|x64.ActiveCfg = Release|iPhone 145 | {AC7B7007-8347-45B8-BA10-05A308B4EA31}.Release|x86.ActiveCfg = Release|iPhone 146 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Ad-Hoc|Any CPU.ActiveCfg = Release|x86 147 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Ad-Hoc|Any CPU.Build.0 = Release|x86 148 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Ad-Hoc|Any CPU.Deploy.0 = Release|x86 149 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Ad-Hoc|ARM.ActiveCfg = Release|ARM 150 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Ad-Hoc|ARM.Build.0 = Release|ARM 151 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Ad-Hoc|ARM.Deploy.0 = Release|ARM 152 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Ad-Hoc|iPhone.ActiveCfg = Release|x86 153 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Ad-Hoc|iPhone.Build.0 = Release|x86 154 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Ad-Hoc|iPhone.Deploy.0 = Release|x86 155 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|x86 156 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|x86 157 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|x86 158 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Ad-Hoc|x64.ActiveCfg = Release|x64 159 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Ad-Hoc|x64.Build.0 = Release|x64 160 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Ad-Hoc|x64.Deploy.0 = Release|x64 161 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Ad-Hoc|x86.ActiveCfg = Release|x86 162 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Ad-Hoc|x86.Build.0 = Release|x86 163 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Ad-Hoc|x86.Deploy.0 = Release|x86 164 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.AppStore|Any CPU.ActiveCfg = Release|x86 165 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.AppStore|Any CPU.Build.0 = Release|x86 166 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.AppStore|Any CPU.Deploy.0 = Release|x86 167 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.AppStore|ARM.ActiveCfg = Release|ARM 168 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.AppStore|ARM.Build.0 = Release|ARM 169 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.AppStore|ARM.Deploy.0 = Release|ARM 170 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.AppStore|iPhone.ActiveCfg = Release|x86 171 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.AppStore|iPhone.Build.0 = Release|x86 172 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.AppStore|iPhone.Deploy.0 = Release|x86 173 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.AppStore|iPhoneSimulator.ActiveCfg = Release|x86 174 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.AppStore|iPhoneSimulator.Build.0 = Release|x86 175 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.AppStore|iPhoneSimulator.Deploy.0 = Release|x86 176 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.AppStore|x64.ActiveCfg = Release|x64 177 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.AppStore|x64.Build.0 = Release|x64 178 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.AppStore|x64.Deploy.0 = Release|x64 179 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.AppStore|x86.ActiveCfg = Release|x86 180 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.AppStore|x86.Build.0 = Release|x86 181 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.AppStore|x86.Deploy.0 = Release|x86 182 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Debug|Any CPU.ActiveCfg = Debug|x86 183 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Debug|ARM.ActiveCfg = Debug|ARM 184 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Debug|ARM.Build.0 = Debug|ARM 185 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Debug|ARM.Deploy.0 = Debug|ARM 186 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Debug|iPhone.ActiveCfg = Debug|x86 187 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Debug|iPhoneSimulator.ActiveCfg = Debug|x86 188 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Debug|x64.ActiveCfg = Debug|x64 189 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Debug|x64.Build.0 = Debug|x64 190 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Debug|x64.Deploy.0 = Debug|x64 191 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Debug|x86.ActiveCfg = Debug|x86 192 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Debug|x86.Build.0 = Debug|x86 193 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Debug|x86.Deploy.0 = Debug|x86 194 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Release|Any CPU.ActiveCfg = Release|x86 195 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Release|ARM.ActiveCfg = Release|ARM 196 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Release|ARM.Build.0 = Release|ARM 197 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Release|ARM.Deploy.0 = Release|ARM 198 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Release|iPhone.ActiveCfg = Release|x86 199 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Release|iPhoneSimulator.ActiveCfg = Release|x86 200 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Release|x64.ActiveCfg = Release|x64 201 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Release|x64.Build.0 = Release|x64 202 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Release|x64.Deploy.0 = Release|x64 203 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Release|x86.ActiveCfg = Release|x86 204 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Release|x86.Build.0 = Release|x86 205 | {EA9780BB-548E-4221-BBE7-05275F86A7F4}.Release|x86.Deploy.0 = Release|x86 206 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Ad-Hoc|Any CPU.ActiveCfg = Debug|Any CPU 207 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Ad-Hoc|Any CPU.Build.0 = Debug|Any CPU 208 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Ad-Hoc|ARM.ActiveCfg = Debug|Any CPU 209 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Ad-Hoc|ARM.Build.0 = Debug|Any CPU 210 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU 211 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU 212 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Debug|Any CPU 213 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Ad-Hoc|iPhoneSimulator.Build.0 = Debug|Any CPU 214 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Ad-Hoc|x64.ActiveCfg = Debug|Any CPU 215 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Ad-Hoc|x64.Build.0 = Debug|Any CPU 216 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Ad-Hoc|x86.ActiveCfg = Debug|Any CPU 217 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Ad-Hoc|x86.Build.0 = Debug|Any CPU 218 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.AppStore|Any CPU.ActiveCfg = Debug|Any CPU 219 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.AppStore|Any CPU.Build.0 = Debug|Any CPU 220 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.AppStore|ARM.ActiveCfg = Debug|Any CPU 221 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.AppStore|ARM.Build.0 = Debug|Any CPU 222 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.AppStore|iPhone.ActiveCfg = Debug|Any CPU 223 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.AppStore|iPhone.Build.0 = Debug|Any CPU 224 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.AppStore|iPhoneSimulator.ActiveCfg = Debug|Any CPU 225 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.AppStore|iPhoneSimulator.Build.0 = Debug|Any CPU 226 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.AppStore|x64.ActiveCfg = Debug|Any CPU 227 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.AppStore|x64.Build.0 = Debug|Any CPU 228 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.AppStore|x86.ActiveCfg = Debug|Any CPU 229 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.AppStore|x86.Build.0 = Debug|Any CPU 230 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 231 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Debug|Any CPU.Build.0 = Debug|Any CPU 232 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Debug|ARM.ActiveCfg = Debug|Any CPU 233 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Debug|ARM.Build.0 = Debug|Any CPU 234 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Debug|iPhone.ActiveCfg = Debug|Any CPU 235 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Debug|iPhone.Build.0 = Debug|Any CPU 236 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 237 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU 238 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Debug|x64.ActiveCfg = Debug|Any CPU 239 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Debug|x64.Build.0 = Debug|Any CPU 240 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Debug|x86.ActiveCfg = Debug|Any CPU 241 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Debug|x86.Build.0 = Debug|Any CPU 242 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Release|Any CPU.ActiveCfg = Release|Any CPU 243 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Release|Any CPU.Build.0 = Release|Any CPU 244 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Release|ARM.ActiveCfg = Release|Any CPU 245 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Release|ARM.Build.0 = Release|Any CPU 246 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Release|iPhone.ActiveCfg = Release|Any CPU 247 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Release|iPhone.Build.0 = Release|Any CPU 248 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 249 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Release|iPhoneSimulator.Build.0 = Release|Any CPU 250 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Release|x64.ActiveCfg = Release|Any CPU 251 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Release|x64.Build.0 = Release|Any CPU 252 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Release|x86.ActiveCfg = Release|Any CPU 253 | {C3060E03-DF8C-4422-8EA2-B80BF41DF56A}.Release|x86.Build.0 = Release|Any CPU 254 | EndGlobalSection 255 | GlobalSection(SolutionProperties) = preSolution 256 | HideSolutionNode = FALSE 257 | EndGlobalSection 258 | GlobalSection(ExtensibilityGlobals) = postSolution 259 | SolutionGuid = {D4048ACE-D8FC-48D3-AE9B-4817047114D6} 260 | EndGlobalSection 261 | EndGlobal 262 | -------------------------------------------------------------------------------- /ReactiveUIDemo/ReactiveUIDemo.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 | -------------------------------------------------------------------------------- /ReactiveUIDemo/ReactiveUIDemo.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 ReactiveUIDemo.Droid 11 | { 12 | [Activity(Label = "ReactiveUIDemo", 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 | -------------------------------------------------------------------------------- /ReactiveUIDemo/ReactiveUIDemo.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /ReactiveUIDemo/ReactiveUIDemo.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("ReactiveUIDemo.Android")] 10 | [assembly: AssemblyDescription("")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("")] 13 | [assembly: AssemblyProduct("ReactiveUIDemo.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 | -------------------------------------------------------------------------------- /ReactiveUIDemo/ReactiveUIDemo.Android/ReactiveUIDemo.Android.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Debug 5 | AnyCPU 6 | {3E938382-A331-4D6E-90DA-866C3500F96A} 7 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 8 | Library 9 | ReactiveUIDemo.Droid 10 | ReactiveUIDemo.Android 11 | v8.0 12 | True 13 | Resources\Resource.designer.cs 14 | Resource 15 | Properties\AndroidManifest.xml 16 | Resources 17 | Assets 18 | true 19 | 20 | 21 | 22 | 23 | true 24 | full 25 | false 26 | bin\Debug 27 | DEBUG; 28 | prompt 29 | 4 30 | None 31 | 32 | 33 | true 34 | pdbonly 35 | true 36 | bin\Release 37 | prompt 38 | 4 39 | true 40 | false 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 2.0.1 52 | 53 | 54 | 7.4.0 55 | 56 | 57 | 7.4.0 58 | 59 | 60 | 7.4.0 61 | 62 | 63 | 2.0.0 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | Designer 95 | 96 | 97 | 98 | 99 | {F5534636-F3BA-43CC-B276-DAD365A7EC72} 100 | ReactiveUIDemo 101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /ReactiveUIDemo/ReactiveUIDemo.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 | -------------------------------------------------------------------------------- /ReactiveUIDemo/ReactiveUIDemo.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolc0ders/ReactiveUIDemo/eddebb6620239d819e53dcce5c3e2ad5ce0301a9/ReactiveUIDemo/ReactiveUIDemo.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /ReactiveUIDemo/ReactiveUIDemo.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolc0ders/ReactiveUIDemo/eddebb6620239d819e53dcce5c3e2ad5ce0301a9/ReactiveUIDemo/ReactiveUIDemo.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /ReactiveUIDemo/ReactiveUIDemo.Android/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolc0ders/ReactiveUIDemo/eddebb6620239d819e53dcce5c3e2ad5ce0301a9/ReactiveUIDemo/ReactiveUIDemo.Android/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /ReactiveUIDemo/ReactiveUIDemo.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolc0ders/ReactiveUIDemo/eddebb6620239d819e53dcce5c3e2ad5ce0301a9/ReactiveUIDemo/ReactiveUIDemo.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /ReactiveUIDemo/ReactiveUIDemo.Android/Resources/layout/Main.axml: -------------------------------------------------------------------------------- 1 |  2 | 3 |