├── .github └── issue_template.md ├── .gitignore ├── AIDLDemo ├── AIDLDemo.sln └── AIDLDemo │ ├── AIDLDemo.csproj │ ├── Activity1.cs │ ├── AdditionService.cs │ ├── AdditionServiceBinder.cs │ ├── AdditionServiceConnection.cs │ ├── AndroidManifest.xml │ ├── IAdditionService.aidl │ └── Resources │ ├── AboutResources.txt │ ├── drawable-hdpi │ └── icon.png │ ├── drawable-ldpi │ └── icon.png │ ├── drawable-mdpi │ └── icon.png │ ├── drawable-xhdpi │ └── icon.png │ ├── drawable-xxhdpi │ └── icon.png │ ├── drawable │ └── Icon.png │ ├── layout │ └── main.axml │ └── values │ └── strings.xml ├── AccelerometerPlay ├── AccelerometerPlay.sln └── AccelerometerPlay │ ├── AccelerometerActivity.cs │ ├── AccelerometerPlay.csproj │ ├── AndroidManifest.xml │ ├── Particle.cs │ ├── ParticleSystem.cs │ ├── PointF.cs │ ├── Resources │ ├── AboutResources.txt │ ├── mipmap-anydpi-v26 │ │ ├── appicon.xml │ │ └── appicon_round.xml │ ├── mipmap-hdpi │ │ ├── appicon.png │ │ ├── appicon_background.png │ │ └── appicon_foreground.png │ ├── mipmap-mdpi │ │ ├── Ball.png │ │ ├── Wood.jpg │ │ ├── appicon.png │ │ ├── appicon_background.png │ │ └── appicon_foreground.png │ ├── mipmap-xhdpi │ │ ├── appicon.png │ │ ├── appicon_background.png │ │ └── appicon_foreground.png │ ├── mipmap-xxhdpi │ │ ├── appicon.png │ │ ├── appicon_background.png │ │ └── appicon_foreground.png │ ├── mipmap-xxxhdpi │ │ ├── appicon.png │ │ ├── appicon_background.png │ │ └── appicon_foreground.png │ └── values │ │ ├── ic_launcher_background.xml │ │ └── strings.xml │ └── SimulationView.cs ├── ActivityLifecycle ├── ActivityLifecycle.csproj ├── ActivityLifecycle.sln ├── AndroidManifest.xml ├── MainActivity.cs ├── Resources │ ├── AboutResources.txt │ ├── layout │ │ └── activity_main.xml │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ └── values │ │ ├── ic_launcher_background.xml │ │ └── strings.xml └── SecondActivity.cs ├── Button ├── Button.sln └── Button │ ├── AndroidManifest.xml │ ├── Button.csproj │ ├── MainActivity.cs │ ├── Metadata.xml │ ├── README.md │ ├── Resources │ ├── AboutResources.txt │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ └── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ └── Screenshots │ └── Button.png ├── CODE-OF-CONDUCT.md ├── LICENSE ├── LocalNotifications ├── LocalNotifications.sln ├── LocalNotifications │ ├── AndroidManifest.xml │ ├── LocalNotifications.csproj │ ├── MainActivity.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── drawable │ │ │ └── Icon.png │ │ ├── layout │ │ │ ├── Main.xml │ │ │ └── Second.axml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_stat_button_click.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ └── values │ │ │ ├── colours.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── SecondActivity.cs ├── README.md └── Screenshots │ ├── screenshot-1.png │ └── screenshot-2.png ├── PdfAnnotator ├── PdfAnnotator.slnx └── PdfAnnotator │ ├── AndroidManifest.xml │ ├── MainActivity.cs │ ├── PdfAnnotator.csproj │ └── Resources │ ├── AboutResources.txt │ ├── mipmap-anydpi-v26 │ ├── appicon.xml │ └── appicon_round.xml │ ├── mipmap-hdpi │ ├── appicon.png │ ├── appicon_background.png │ └── appicon_foreground.png │ ├── mipmap-mdpi │ ├── appicon.png │ ├── appicon_background.png │ └── appicon_foreground.png │ ├── mipmap-xhdpi │ ├── appicon.png │ ├── appicon_background.png │ └── appicon_foreground.png │ ├── mipmap-xxhdpi │ ├── appicon.png │ ├── appicon_background.png │ └── appicon_foreground.png │ ├── mipmap-xxxhdpi │ ├── appicon.png │ ├── appicon_background.png │ └── appicon_foreground.png │ └── values │ ├── ic_launcher_background.xml │ └── strings.xml ├── Phoneword ├── Phoneword.sln ├── Phoneword │ ├── AndroidManifest.xml │ ├── MainActivity.cs │ ├── PhoneTranslator.cs │ ├── Phoneword.csproj │ └── Resources │ │ ├── AboutResources.txt │ │ ├── layout │ │ └── Main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── ic_launcher_background.xml │ │ └── strings.xml ├── README.md └── Screenshots │ ├── Phoneword Sample Photo 1.png │ ├── Phoneword Sample Photo 2.png │ └── example-screenshot.png ├── PopupMenuDemo ├── AndroidManifest.xml ├── MainActivity.cs ├── PopupMenuDemo.csproj ├── PopupMenuDemo.sln ├── README.md └── Resources │ ├── AboutResources.txt │ ├── layout │ └── Main.xml │ ├── menu │ └── popup_menu.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ └── values │ ├── ic_launcher_background.xml │ └── strings.xml ├── README.md ├── Screenshots ├── PopupMenuDemo.png ├── PopupMenuDemoPhoto1.png └── PopupMenuDemoPhoto2.png ├── SwitchDemo ├── README.md ├── Screenshots │ ├── Screenshot_switchoff.png │ ├── Screenshot_switchon.png │ └── screenshot.png ├── SwitchDemo.sln └── SwitchDemo │ ├── Activity1.cs │ ├── AndroidManifest.xml │ ├── Resources │ ├── AboutResources.txt │ ├── layout │ │ └── Main.xml │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ └── values │ │ ├── ic_launcher_background.xml │ │ └── strings.xml │ └── SwitchDemo.csproj ├── TextSwitcher ├── TextSwitcher.sln └── TextSwitcher │ ├── AndroidManifest.xml │ ├── MainActivity.cs │ ├── Resources │ ├── AboutResources.txt │ ├── layout │ │ └── Main.xml │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ └── values │ │ ├── ic_launcher_background.xml │ │ └── strings.xml │ └── TextSwitcher.csproj └── UpdateUsersProfile ├── AndroidManifest.xml ├── MainActivity.cs ├── Resources ├── AboutResources.txt ├── layout │ └── Main.xml ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png └── values │ ├── ic_launcher_background.xml │ └── strings.xml ├── UpdateUsersProfile.csproj └── UpdateUsersProfile.sln /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AIDLDemo/AIDLDemo.sln -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/AIDLDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AIDLDemo/AIDLDemo/AIDLDemo.csproj -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/Activity1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AIDLDemo/AIDLDemo/Activity1.cs -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/AdditionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AIDLDemo/AIDLDemo/AdditionService.cs -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/AdditionServiceBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AIDLDemo/AIDLDemo/AdditionServiceBinder.cs -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/AdditionServiceConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AIDLDemo/AIDLDemo/AdditionServiceConnection.cs -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AIDLDemo/AIDLDemo/AndroidManifest.xml -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/IAdditionService.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AIDLDemo/AIDLDemo/IAdditionService.aidl -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AIDLDemo/AIDLDemo/Resources/AboutResources.txt -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AIDLDemo/AIDLDemo/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/Resources/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AIDLDemo/AIDLDemo/Resources/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/Resources/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AIDLDemo/AIDLDemo/Resources/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AIDLDemo/AIDLDemo/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AIDLDemo/AIDLDemo/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AIDLDemo/AIDLDemo/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/Resources/layout/main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AIDLDemo/AIDLDemo/Resources/layout/main.axml -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AIDLDemo/AIDLDemo/Resources/values/strings.xml -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay.sln -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/AccelerometerActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/AccelerometerActivity.cs -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/AccelerometerPlay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/AccelerometerPlay.csproj -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/AndroidManifest.xml -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Particle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Particle.cs -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/ParticleSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/ParticleSystem.cs -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/PointF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/PointF.cs -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/AboutResources.txt -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-anydpi-v26/appicon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-anydpi-v26/appicon.xml -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-anydpi-v26/appicon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-anydpi-v26/appicon_round.xml -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-hdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-hdpi/appicon.png -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-hdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-hdpi/appicon_background.png -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-hdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-hdpi/appicon_foreground.png -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-mdpi/Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-mdpi/Ball.png -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-mdpi/Wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-mdpi/Wood.jpg -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-mdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-mdpi/appicon.png -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-mdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-mdpi/appicon_background.png -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-mdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-mdpi/appicon_foreground.png -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xhdpi/appicon.png -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xhdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xhdpi/appicon_background.png -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xhdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xhdpi/appicon_foreground.png -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xxhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xxhdpi/appicon.png -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xxhdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xxhdpi/appicon_background.png -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xxhdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xxhdpi/appicon_foreground.png -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xxxhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xxxhdpi/appicon.png -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xxxhdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xxxhdpi/appicon_background.png -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xxxhdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xxxhdpi/appicon_foreground.png -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/values/strings.xml -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/SimulationView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/SimulationView.cs -------------------------------------------------------------------------------- /ActivityLifecycle/ActivityLifecycle.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/ActivityLifecycle.csproj -------------------------------------------------------------------------------- /ActivityLifecycle/ActivityLifecycle.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/ActivityLifecycle.sln -------------------------------------------------------------------------------- /ActivityLifecycle/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/AndroidManifest.xml -------------------------------------------------------------------------------- /ActivityLifecycle/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/MainActivity.cs -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/AboutResources.txt -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/layout/activity_main.xml -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/values/strings.xml -------------------------------------------------------------------------------- /ActivityLifecycle/SecondActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/SecondActivity.cs -------------------------------------------------------------------------------- /Button/Button.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button.sln -------------------------------------------------------------------------------- /Button/Button/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/AndroidManifest.xml -------------------------------------------------------------------------------- /Button/Button/Button.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Button.csproj -------------------------------------------------------------------------------- /Button/Button/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/MainActivity.cs -------------------------------------------------------------------------------- /Button/Button/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Metadata.xml -------------------------------------------------------------------------------- /Button/Button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/README.md -------------------------------------------------------------------------------- /Button/Button/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Button/Button/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Button/Button/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Button/Button/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Button/Button/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Button/Button/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Button/Button/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Button/Button/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Button/Button/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Button/Button/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Button/Button/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Button/Button/Resources/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Button/Button/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Button/Button/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Button/Button/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Button/Button/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Button/Button/Screenshots/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Screenshots/Button.png -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications.sln -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/AndroidManifest.xml -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/LocalNotifications.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/LocalNotifications.csproj -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/MainActivity.cs -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/AboutResources.txt -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/layout/Main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/layout/Main.xml -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/layout/Second.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/layout/Second.axml -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-hdpi/ic_stat_button_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-hdpi/ic_stat_button_click.png -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/values/colours.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/values/colours.xml -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/values/strings.xml -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/values/styles.xml -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/SecondActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/SecondActivity.cs -------------------------------------------------------------------------------- /LocalNotifications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/README.md -------------------------------------------------------------------------------- /LocalNotifications/Screenshots/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/Screenshots/screenshot-1.png -------------------------------------------------------------------------------- /LocalNotifications/Screenshots/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/Screenshots/screenshot-2.png -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator.slnx -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/AndroidManifest.xml -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/MainActivity.cs -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/PdfAnnotator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/PdfAnnotator.csproj -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/AboutResources.txt -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-anydpi-v26/appicon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-anydpi-v26/appicon.xml -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-anydpi-v26/appicon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-anydpi-v26/appicon_round.xml -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-hdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-hdpi/appicon.png -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-hdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-hdpi/appicon_background.png -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-hdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-hdpi/appicon_foreground.png -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-mdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-mdpi/appicon.png -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-mdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-mdpi/appicon_background.png -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-mdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-mdpi/appicon_foreground.png -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-xhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-xhdpi/appicon.png -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-xhdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-xhdpi/appicon_background.png -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-xhdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-xhdpi/appicon_foreground.png -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-xxhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-xxhdpi/appicon.png -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-xxhdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-xxhdpi/appicon_background.png -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-xxhdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-xxhdpi/appicon_foreground.png -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-xxxhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-xxxhdpi/appicon.png -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-xxxhdpi/appicon_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-xxxhdpi/appicon_background.png -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-xxxhdpi/appicon_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-xxxhdpi/appicon_foreground.png -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/values/strings.xml -------------------------------------------------------------------------------- /Phoneword/Phoneword.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword.sln -------------------------------------------------------------------------------- /Phoneword/Phoneword/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/AndroidManifest.xml -------------------------------------------------------------------------------- /Phoneword/Phoneword/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/MainActivity.cs -------------------------------------------------------------------------------- /Phoneword/Phoneword/PhoneTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/PhoneTranslator.cs -------------------------------------------------------------------------------- /Phoneword/Phoneword/Phoneword.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Phoneword.csproj -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/layout/Main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/layout/Main.xml -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/values/strings.xml -------------------------------------------------------------------------------- /Phoneword/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/README.md -------------------------------------------------------------------------------- /Phoneword/Screenshots/Phoneword Sample Photo 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Screenshots/Phoneword Sample Photo 1.png -------------------------------------------------------------------------------- /Phoneword/Screenshots/Phoneword Sample Photo 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Screenshots/Phoneword Sample Photo 2.png -------------------------------------------------------------------------------- /Phoneword/Screenshots/example-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Screenshots/example-screenshot.png -------------------------------------------------------------------------------- /PopupMenuDemo/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/AndroidManifest.xml -------------------------------------------------------------------------------- /PopupMenuDemo/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/MainActivity.cs -------------------------------------------------------------------------------- /PopupMenuDemo/PopupMenuDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/PopupMenuDemo.csproj -------------------------------------------------------------------------------- /PopupMenuDemo/PopupMenuDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/PopupMenuDemo.sln -------------------------------------------------------------------------------- /PopupMenuDemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/README.md -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/AboutResources.txt -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/layout/Main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/layout/Main.xml -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/menu/popup_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/menu/popup_menu.xml -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/values/strings.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/PopupMenuDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Screenshots/PopupMenuDemo.png -------------------------------------------------------------------------------- /Screenshots/PopupMenuDemoPhoto1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Screenshots/PopupMenuDemoPhoto1.png -------------------------------------------------------------------------------- /Screenshots/PopupMenuDemoPhoto2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Screenshots/PopupMenuDemoPhoto2.png -------------------------------------------------------------------------------- /SwitchDemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/README.md -------------------------------------------------------------------------------- /SwitchDemo/Screenshots/Screenshot_switchoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/Screenshots/Screenshot_switchoff.png -------------------------------------------------------------------------------- /SwitchDemo/Screenshots/Screenshot_switchon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/Screenshots/Screenshot_switchon.png -------------------------------------------------------------------------------- /SwitchDemo/Screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/Screenshots/screenshot.png -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo.sln -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Activity1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Activity1.cs -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/AndroidManifest.xml -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/AboutResources.txt -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/layout/Main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/layout/Main.xml -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/values/strings.xml -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/SwitchDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/SwitchDemo.csproj -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher.sln -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/AndroidManifest.xml -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/MainActivity.cs -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/AboutResources.txt -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/layout/Main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/layout/Main.xml -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/values/strings.xml -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/TextSwitcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/TextSwitcher.csproj -------------------------------------------------------------------------------- /UpdateUsersProfile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/AndroidManifest.xml -------------------------------------------------------------------------------- /UpdateUsersProfile/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/MainActivity.cs -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/AboutResources.txt -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/layout/Main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/layout/Main.xml -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/values/strings.xml -------------------------------------------------------------------------------- /UpdateUsersProfile/UpdateUsersProfile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/UpdateUsersProfile.csproj -------------------------------------------------------------------------------- /UpdateUsersProfile/UpdateUsersProfile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/UpdateUsersProfile.sln --------------------------------------------------------------------------------