├── Screenshots ├── PopupMenuDemo.png ├── PopupMenuDemoPhoto1.png └── PopupMenuDemoPhoto2.png ├── Button ├── Button │ ├── Screenshots │ │ └── Button.png │ ├── Resources │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ └── AboutResources.txt │ ├── README.md │ ├── Metadata.xml │ ├── AndroidManifest.xml │ ├── Button.csproj │ └── MainActivity.cs └── Button.sln ├── SwitchDemo ├── Screenshots │ ├── screenshot.png │ ├── Screenshot_switchoff.png │ └── Screenshot_switchon.png ├── SwitchDemo │ ├── Resources │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── values │ │ │ ├── ic_launcher_background.xml │ │ │ └── strings.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ ├── layout │ │ │ └── Main.xml │ │ └── AboutResources.txt │ ├── AndroidManifest.xml │ ├── SwitchDemo.csproj │ └── Activity1.cs ├── README.md └── SwitchDemo.sln ├── PdfAnnotator ├── PdfAnnotator │ ├── MainActivity.cs │ ├── Resources │ │ ├── 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 │ │ │ ├── strings.xml │ │ │ └── ic_launcher_background.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── appicon.xml │ │ │ └── appicon_round.xml │ │ └── AboutResources.txt │ ├── AndroidManifest.xml │ └── PdfAnnotator.csproj └── PdfAnnotator.slnx ├── AIDLDemo ├── AIDLDemo │ ├── Resources │ │ ├── drawable │ │ │ └── Icon.png │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── values │ │ │ └── strings.xml │ │ ├── layout │ │ │ └── main.axml │ │ └── AboutResources.txt │ ├── IAdditionService.aidl │ ├── AndroidManifest.xml │ ├── AdditionServiceBinder.cs │ ├── AIDLDemo.csproj │ ├── AdditionService.cs │ ├── AdditionServiceConnection.cs │ └── Activity1.cs └── AIDLDemo.sln ├── Phoneword ├── Screenshots │ ├── example-screenshot.png │ ├── Phoneword Sample Photo 1.png │ └── Phoneword Sample Photo 2.png ├── Phoneword │ ├── Resources │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── values │ │ │ ├── ic_launcher_background.xml │ │ │ └── strings.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ ├── layout │ │ │ └── Main.xml │ │ └── AboutResources.txt │ ├── AndroidManifest.xml │ ├── Phoneword.csproj │ ├── PhoneTranslator.cs │ └── MainActivity.cs ├── README.md └── Phoneword.sln ├── LocalNotifications ├── Screenshots │ ├── screenshot-1.png │ └── screenshot-2.png ├── LocalNotifications │ ├── Resources │ │ ├── drawable │ │ │ └── Icon.png │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ ├── ic_stat_button_click.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── values │ │ │ ├── colours.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ ├── layout │ │ │ ├── Main.xml │ │ │ └── Second.axml │ │ └── AboutResources.txt │ ├── AndroidManifest.xml │ ├── LocalNotifications.csproj │ ├── SecondActivity.cs │ └── MainActivity.cs ├── README.md └── LocalNotifications.sln ├── PopupMenuDemo ├── Resources │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── values │ │ ├── ic_launcher_background.xml │ │ └── strings.xml │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── menu │ │ └── popup_menu.xml │ ├── layout │ │ └── Main.xml │ └── AboutResources.txt ├── README.md ├── AndroidManifest.xml ├── PopupMenuDemo.csproj ├── MainActivity.cs └── PopupMenuDemo.sln ├── ActivityLifecycle ├── Resources │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── values │ │ ├── ic_launcher_background.xml │ │ └── strings.xml │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── layout │ │ └── activity_main.xml │ └── AboutResources.txt ├── AndroidManifest.xml ├── ActivityLifecycle.csproj ├── ActivityLifecycle.sln ├── SecondActivity.cs └── MainActivity.cs ├── UpdateUsersProfile ├── Resources │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ic_launcher_foreground.png │ ├── values │ │ ├── ic_launcher_background.xml │ │ └── strings.xml │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── layout │ │ └── Main.xml │ └── AboutResources.txt ├── UpdateUsersProfile.csproj ├── AndroidManifest.xml ├── UpdateUsersProfile.sln └── MainActivity.cs ├── TextSwitcher ├── TextSwitcher │ ├── Resources │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ └── ic_launcher_foreground.png │ │ ├── values │ │ │ ├── ic_launcher_background.xml │ │ │ └── strings.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ ├── layout │ │ │ └── Main.xml │ │ └── AboutResources.txt │ ├── AndroidManifest.xml │ ├── TextSwitcher.csproj │ └── MainActivity.cs └── TextSwitcher.sln ├── AccelerometerPlay ├── AccelerometerPlay │ ├── Resources │ │ ├── mipmap-mdpi │ │ │ ├── Ball.png │ │ │ ├── Wood.jpg │ │ │ ├── appicon.png │ │ │ ├── appicon_background.png │ │ │ └── appicon_foreground.png │ │ ├── mipmap-hdpi │ │ │ ├── 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 │ │ ├── mipmap-anydpi-v26 │ │ │ ├── appicon.xml │ │ │ └── appicon_round.xml │ │ └── AboutResources.txt │ ├── AndroidManifest.xml │ ├── AccelerometerPlay.csproj │ ├── PointF.cs │ ├── AccelerometerActivity.cs │ ├── Particle.cs │ ├── ParticleSystem.cs │ └── SimulationView.cs └── AccelerometerPlay.sln ├── CODE-OF-CONDUCT.md ├── .github └── issue_template.md ├── LICENSE ├── .gitignore └── 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 -------------------------------------------------------------------------------- /Button/Button/Screenshots/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Screenshots/Button.png -------------------------------------------------------------------------------- /SwitchDemo/Screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/Screenshots/screenshot.png -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/MainActivity.cs -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AIDLDemo/AIDLDemo/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /Phoneword/Screenshots/example-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Screenshots/example-screenshot.png -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-mdpi/ic_launcher.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 -------------------------------------------------------------------------------- /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-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /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-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-mdpi/ic_launcher.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-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-xxxhdpi/ic_launcher.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-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/IAdditionService.aidl: -------------------------------------------------------------------------------- 1 | package com.xamarin.aidldemo; 2 | 3 | interface IAdditionService { 4 | int add(in int value1, in int value2); 5 | } 6 | 7 | -------------------------------------------------------------------------------- /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-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-xxhdpi/ic_launcher.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_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /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-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-mdpi/ic_launcher.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_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /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-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-xxxhdpi/ic_launcher.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_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_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /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-mdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-mdpi/appicon.png -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-xhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-xhdpi/appicon.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-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-xxhdpi/ic_launcher.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 -------------------------------------------------------------------------------- /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_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-xxhdpi/ic_launcher_round.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 -------------------------------------------------------------------------------- /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-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-mdpi/ic_launcher.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 -------------------------------------------------------------------------------- /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-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-xxxhdpi/ic_launcher.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_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-mdpi/ic_launcher_round.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 -------------------------------------------------------------------------------- /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-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-mdpi/ic_launcher_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-xxxhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PdfAnnotator/PdfAnnotator/Resources/mipmap-xxxhdpi/appicon.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-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-mdpi/ic_launcher_foreground.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-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-xxxhdpi/ic_launcher.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_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-mdpi/ic_launcher_round.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_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-xxxhdpi/ic_launcher_round.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-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-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Button/Button/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/drawable/Icon.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_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_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_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/Phoneword/Phoneword/Resources/mipmap-xxhdpi/ic_launcher_round.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-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/PopupMenuDemo/Resources/mipmap-xxhdpi/ic_launcher_foreground.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 -------------------------------------------------------------------------------- /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_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/Resources/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /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-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-mdpi/ic_launcher.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-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-xxhdpi/ic_launcher.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_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-xxhdpi/ic_launcher_round.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 -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-mdpi/ic_launcher_foreground.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/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #2C3E50 4 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #2C3E50 4 | -------------------------------------------------------------------------------- /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_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/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 -------------------------------------------------------------------------------- /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-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /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-mdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-mdpi/appicon.png -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xhdpi/appicon.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-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/ActivityLifecycle/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /Button/Button/README.md: -------------------------------------------------------------------------------- 1 | # Button Widget 2 | 3 | Shows how to use a simple button widget - see the [documentation](https://docs.microsoft.com/xamarin/android/user-interface/controls/buttons/). 4 | -------------------------------------------------------------------------------- /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_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/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | PdfAnnotator 3 | Hello, Android! 4 | 5 | -------------------------------------------------------------------------------- /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-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-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-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/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #2C3E50 4 | -------------------------------------------------------------------------------- /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-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-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: -------------------------------------------------------------------------------- 1 | 2 | 3 | #2C3E50 4 | -------------------------------------------------------------------------------- /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_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_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-xhdpi/ic_launcher_round.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-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/UpdateUsersProfile/Resources/mipmap-xxhdpi/ic_launcher_foreground.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/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #2C3E50 4 | -------------------------------------------------------------------------------- /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-xxxhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/AccelerometerPlay/AccelerometerPlay/Resources/mipmap-xxxhdpi/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_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/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #2C3E50 4 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/SwitchDemo/SwitchDemo/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_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: -------------------------------------------------------------------------------- 1 | 2 | 3 | #2C3E50 4 | -------------------------------------------------------------------------------- /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-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-mdpi/ic_launcher.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 -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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-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-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #2C3E50 4 | -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AccelerometerPlay 3 | Hello, Android! 4 | 5 | -------------------------------------------------------------------------------- /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-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/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-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/TextSwitcher/TextSwitcher/Resources/mipmap-xxxhdpi/ic_launcher_foreground.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/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 -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-xxxhdpi/ic_launcher.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_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 -------------------------------------------------------------------------------- /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-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_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-xhdpi/ic_launcher_round.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 -------------------------------------------------------------------------------- /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-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_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /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-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-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-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-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/android-samples/HEAD/LocalNotifications/LocalNotifications/Resources/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/Resources/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hello AIDL! (.NET 6) 4 | AIDL Demo (.NET 6) 5 | 6 | -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | SwitchDemo 4 | YES 5 | NO 6 | 7 | -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Start Activity B 3 | I\'ve been touched %1$d times. 4 | ActivityLifecycle 5 | 6 | -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Show popup menu 4 | PopupMenuDemo 5 | Hello, Android! 6 | -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-anydpi-v26/appicon.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | This project has adopted the code of conduct defined by the Contributor Covenant 4 | to clarify expected behavior in our community. 5 | 6 | For more information, see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/code-of-conduct). 7 | -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/Resources/mipmap-anydpi-v26/appicon_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-anydpi-v26/appicon.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/Resources/mipmap-anydpi-v26/appicon_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Phone Word 4 | 1-855-XAMARIN 5 | Translate 6 | Enter a Phoneword: 7 | -------------------------------------------------------------------------------- /Phoneword/Phoneword/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ActivityLifecycle/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/values/colours.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | #3F51B5 5 | #303F9F 6 | #FF4081 7 | #FFFFFF 8 | -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Phoneword/Phoneword/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | LocalNotifications 3 | Hello World, Click Me! 4 | 5 | Local Notifications 6 | The count from MainActivity. 7 | 8 | -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Button/Button/Metadata.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 58efbec2-7223-47b1-b889-fa1270f8c97f 4 | false 5 | Beginning 6 | User Interface 7 | true 8 | Shows how to use a simple button widget. 9 | 10 | -------------------------------------------------------------------------------- /PopupMenuDemo/Resources/menu/popup_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 7 | 9 | -------------------------------------------------------------------------------- /PopupMenuDemo/README.md: -------------------------------------------------------------------------------- 1 | # Popup Menu Demo 2 | 3 | **PopupMenuDemo** is a sample app that accompanies the article, 4 | [PopUp Menu](https://docs.microsoft.com/xamarin/android/user-interface/controls/popup-menu). 5 | It demonstrates how to add support for displaying popup menus that are attached to 6 | a particular view. 7 | 8 | ![Popup menu in Android](Screenshots/PopupMenuDemo.png) 9 | -------------------------------------------------------------------------------- /Button/Button/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /UpdateUsersProfile/Resources/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | UpdateUsersProfile 3 | Hello, Android! 4 | Update Profile 5 | UpdateUserProfile 6 | Permission to access contacts 7 | 8 | -------------------------------------------------------------------------------- /ActivityLifecycle/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PdfAnnotator/PdfAnnotator/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /PopupMenuDemo/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- 1 | #### Sample link 2 | 3 | [paste here the link to sample] 4 | 5 | #### Issue description 6 | 7 | [provide an issue description] 8 | 9 | #### Steps to reproduce the issue 10 | 11 | 1. 12 | 2. 13 | 3. 14 | 15 | 16 | #### What's the expected result? 17 | 18 | - 19 | 20 | 21 | #### What's the actual result? 22 | 23 | - 24 | 25 | 26 | #### Additional details / screenshot (Optional) 27 | 28 | - 29 | - -------------------------------------------------------------------------------- /AccelerometerPlay/AccelerometerPlay/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /SwitchDemo/README.md: -------------------------------------------------------------------------------- 1 | # Switch Demo 2 | 3 | This sample app accompanies the article, 4 | [Introduction to Switches](https://docs.microsoft.com/xamarin/android/user-interface/controls/switch), showing how to use the Switch control in Xamarin.Android. 5 | 6 | 7 | ![Switch control in an Android app](Screenshots/screenshot.png) 8 | ![Switch on in an Android app](Screenshots/Screenshot_switchon) 9 | ![Switch off in an Android app](Screenshots/Screenshot_switchoff) 10 | -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher/Resources/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | TextSwitcher 3 | Hello, Android! 4 | 5 | This sample illustrates the use of a TextSwitcher to display text. 6 | \n\nClick the button below to set new text in the TextSwitcher and observe the in and out 7 | fade animations. 8 | 9 | Next 10 | 11 | -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /AIDLDemo/AIDLDemo/AdditionServiceBinder.cs: -------------------------------------------------------------------------------- 1 | using Android.Util; 2 | using System; 3 | using Com.Xamarin.Aidldemo; 4 | 5 | namespace Xamarin.AidlDemo 6 | { 7 | public class AdditionServiceBinder: IAdditionServiceStub, IAdditionService 8 | { 9 | public static readonly string Tag = "AdditionServiceBinder"; 10 | public override int Add (int value1, int value2) 11 | { 12 | Log.Debug (Tag, "AdditionService.Add({0}, {1})", value1, value2); 13 | return value1 + value2; 14 | } 15 | 16 | } 17 | } 18 | 19 | -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications/Resources/layout/Main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 24 | 27 | 28 | -------------------------------------------------------------------------------- /Button/Button.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.3.32519.111 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Button", "Button\Button.csproj", "{6718B810-3374-4B91-A10D-BE95A40BABA2}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {6718B810-3374-4B91-A10D-BE95A40BABA2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {6718B810-3374-4B91-A10D-BE95A40BABA2}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {6718B810-3374-4B91-A10D-BE95A40BABA2}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 17 | {6718B810-3374-4B91-A10D-BE95A40BABA2}.Release|Any CPU.ActiveCfg = Release|Any CPU 18 | {6718B810-3374-4B91-A10D-BE95A40BABA2}.Release|Any CPU.Build.0 = Release|Any CPU 19 | {6718B810-3374-4B91-A10D-BE95A40BABA2}.Release|Any CPU.Deploy.0 = Release|Any CPU 20 | EndGlobalSection 21 | GlobalSection(SolutionProperties) = preSolution 22 | HideSolutionNode = FALSE 23 | EndGlobalSection 24 | GlobalSection(ExtensibilityGlobals) = postSolution 25 | SolutionGuid = {87F7BF16-6B87-4D3B-9EF4-C69B7A1112D0} 26 | EndGlobalSection 27 | EndGlobal 28 | -------------------------------------------------------------------------------- /Phoneword/Phoneword.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.3.32519.111 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Phoneword", "Phoneword\Phoneword.csproj", "{9C2983B9-50D8-4BD8-93B7-72027DE935E8}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {9C2983B9-50D8-4BD8-93B7-72027DE935E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {9C2983B9-50D8-4BD8-93B7-72027DE935E8}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {9C2983B9-50D8-4BD8-93B7-72027DE935E8}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 17 | {9C2983B9-50D8-4BD8-93B7-72027DE935E8}.Release|Any CPU.ActiveCfg = Release|Any CPU 18 | {9C2983B9-50D8-4BD8-93B7-72027DE935E8}.Release|Any CPU.Build.0 = Release|Any CPU 19 | {9C2983B9-50D8-4BD8-93B7-72027DE935E8}.Release|Any CPU.Deploy.0 = Release|Any CPU 20 | EndGlobalSection 21 | GlobalSection(SolutionProperties) = preSolution 22 | HideSolutionNode = FALSE 23 | EndGlobalSection 24 | GlobalSection(ExtensibilityGlobals) = postSolution 25 | SolutionGuid = {F4BD4825-E0F1-4313-BD5C-D9877C7D0635} 26 | EndGlobalSection 27 | EndGlobal 28 | -------------------------------------------------------------------------------- /SwitchDemo/SwitchDemo.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.3.32611.2 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SwitchDemo", "SwitchDemo\SwitchDemo.csproj", "{F2BBE1A9-C2FE-4916-A58E-CC0C9DA8BFC6}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {F2BBE1A9-C2FE-4916-A58E-CC0C9DA8BFC6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {F2BBE1A9-C2FE-4916-A58E-CC0C9DA8BFC6}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {F2BBE1A9-C2FE-4916-A58E-CC0C9DA8BFC6}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 17 | {F2BBE1A9-C2FE-4916-A58E-CC0C9DA8BFC6}.Release|Any CPU.ActiveCfg = Release|Any CPU 18 | {F2BBE1A9-C2FE-4916-A58E-CC0C9DA8BFC6}.Release|Any CPU.Build.0 = Release|Any CPU 19 | {F2BBE1A9-C2FE-4916-A58E-CC0C9DA8BFC6}.Release|Any CPU.Deploy.0 = Release|Any CPU 20 | EndGlobalSection 21 | GlobalSection(SolutionProperties) = preSolution 22 | HideSolutionNode = FALSE 23 | EndGlobalSection 24 | GlobalSection(ExtensibilityGlobals) = postSolution 25 | SolutionGuid = {A200BC8E-80B1-4AEE-8192-640BA82DA8A4} 26 | EndGlobalSection 27 | EndGlobal 28 | -------------------------------------------------------------------------------- /TextSwitcher/TextSwitcher.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.3.32611.2 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TextSwitcher", "TextSwitcher\TextSwitcher.csproj", "{ECC6B3D3-DA78-42C3-A596-554E5BB5CA89}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {ECC6B3D3-DA78-42C3-A596-554E5BB5CA89}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {ECC6B3D3-DA78-42C3-A596-554E5BB5CA89}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {ECC6B3D3-DA78-42C3-A596-554E5BB5CA89}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 17 | {ECC6B3D3-DA78-42C3-A596-554E5BB5CA89}.Release|Any CPU.ActiveCfg = Release|Any CPU 18 | {ECC6B3D3-DA78-42C3-A596-554E5BB5CA89}.Release|Any CPU.Build.0 = Release|Any CPU 19 | {ECC6B3D3-DA78-42C3-A596-554E5BB5CA89}.Release|Any CPU.Deploy.0 = Release|Any CPU 20 | EndGlobalSection 21 | GlobalSection(SolutionProperties) = preSolution 22 | HideSolutionNode = FALSE 23 | EndGlobalSection 24 | GlobalSection(ExtensibilityGlobals) = postSolution 25 | SolutionGuid = {C25255BD-731B-46A9-9714-B0B7E261D192} 26 | EndGlobalSection 27 | EndGlobal 28 | -------------------------------------------------------------------------------- /ActivityLifecycle/ActivityLifecycle.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.3.32512.399 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ActivityLifecycle", "ActivityLifecycle.csproj", "{D0B18553-F12F-4F73-9375-9840A27073A0}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {D0B18553-F12F-4F73-9375-9840A27073A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {D0B18553-F12F-4F73-9375-9840A27073A0}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {D0B18553-F12F-4F73-9375-9840A27073A0}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 17 | {D0B18553-F12F-4F73-9375-9840A27073A0}.Release|Any CPU.ActiveCfg = Release|Any CPU 18 | {D0B18553-F12F-4F73-9375-9840A27073A0}.Release|Any CPU.Build.0 = Release|Any CPU 19 | {D0B18553-F12F-4F73-9375-9840A27073A0}.Release|Any CPU.Deploy.0 = Release|Any CPU 20 | EndGlobalSection 21 | GlobalSection(SolutionProperties) = preSolution 22 | HideSolutionNode = FALSE 23 | EndGlobalSection 24 | GlobalSection(ExtensibilityGlobals) = postSolution 25 | SolutionGuid = {0DA60B70-B72A-4DAD-900B-5DC8B42D9508} 26 | EndGlobalSection 27 | EndGlobal 28 | -------------------------------------------------------------------------------- /ActivityLifecycle/SecondActivity.cs: -------------------------------------------------------------------------------- 1 | namespace ActivityLifecycle; 2 | 3 | using Android.App; 4 | using Android.OS; 5 | using Android.Util; 6 | 7 | [Activity(Label = "Activity B")] 8 | public class SecondActivity : Activity 9 | { 10 | protected override void OnCreate(Bundle? bundle) 11 | { 12 | Log.Debug(GetType().FullName, "Activity B - OnCreate"); 13 | base.OnCreate(bundle); 14 | } 15 | 16 | protected override void OnRestart() 17 | { 18 | Log.Debug(GetType().FullName, "Activity B - OnRestart"); 19 | base.OnRestart(); 20 | } 21 | 22 | protected override void OnStart() 23 | { 24 | Log.Debug(GetType().FullName, "Activity B - OnStart"); 25 | base.OnStart(); 26 | } 27 | 28 | protected override void OnResume() 29 | { 30 | Log.Debug(GetType().FullName, "Activity B - OnResume"); 31 | base.OnResume(); 32 | } 33 | 34 | protected override void OnPause() 35 | { 36 | Log.Debug(GetType().FullName, "Activity B - OnPause"); 37 | base.OnPause(); 38 | } 39 | 40 | protected override void OnStop() 41 | { 42 | Log.Debug(GetType().FullName, "Activity B - OnStop"); 43 | base.OnStop(); 44 | } 45 | 46 | protected override void OnDestroy() 47 | { 48 | Log.Debug(GetType().FullName, "Activity B - OnDestroy"); 49 | base.OnDestroy(); 50 | } 51 | } -------------------------------------------------------------------------------- /UpdateUsersProfile/UpdateUsersProfile.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.3.32611.2 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UpdateUsersProfile", "UpdateUsersProfile.csproj", "{E434AC58-B83D-4A9F-87DD-363402C978A1}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {E434AC58-B83D-4A9F-87DD-363402C978A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {E434AC58-B83D-4A9F-87DD-363402C978A1}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {E434AC58-B83D-4A9F-87DD-363402C978A1}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 17 | {E434AC58-B83D-4A9F-87DD-363402C978A1}.Release|Any CPU.ActiveCfg = Release|Any CPU 18 | {E434AC58-B83D-4A9F-87DD-363402C978A1}.Release|Any CPU.Build.0 = Release|Any CPU 19 | {E434AC58-B83D-4A9F-87DD-363402C978A1}.Release|Any CPU.Deploy.0 = Release|Any CPU 20 | EndGlobalSection 21 | GlobalSection(SolutionProperties) = preSolution 22 | HideSolutionNode = FALSE 23 | EndGlobalSection 24 | GlobalSection(ExtensibilityGlobals) = postSolution 25 | SolutionGuid = {750BA47A-692F-44B3-B51A-1EF7F94AAABF} 26 | EndGlobalSection 27 | EndGlobal 28 | -------------------------------------------------------------------------------- /LocalNotifications/LocalNotifications.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.3.32519.111 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LocalNotifications", "LocalNotifications\LocalNotifications.csproj", "{4B2A0076-A973-4AC3-B762-4B889BEFC9C2}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {4B2A0076-A973-4AC3-B762-4B889BEFC9C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {4B2A0076-A973-4AC3-B762-4B889BEFC9C2}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {4B2A0076-A973-4AC3-B762-4B889BEFC9C2}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 17 | {4B2A0076-A973-4AC3-B762-4B889BEFC9C2}.Release|Any CPU.ActiveCfg = Release|Any CPU 18 | {4B2A0076-A973-4AC3-B762-4B889BEFC9C2}.Release|Any CPU.Build.0 = Release|Any CPU 19 | {4B2A0076-A973-4AC3-B762-4B889BEFC9C2}.Release|Any CPU.Deploy.0 = Release|Any CPU 20 | EndGlobalSection 21 | GlobalSection(SolutionProperties) = preSolution 22 | HideSolutionNode = FALSE 23 | EndGlobalSection 24 | GlobalSection(ExtensibilityGlobals) = postSolution 25 | SolutionGuid = {5AFA1196-F555-4E40-8873-088B8649B8A4} 26 | EndGlobalSection 27 | EndGlobal 28 | -------------------------------------------------------------------------------- /Phoneword/Phoneword/PhoneTranslator.cs: -------------------------------------------------------------------------------- 1 | using System.Text; 2 | 3 | namespace Core; 4 | 5 | public static class PhoneTranslator 6 | { 7 | public static string ToNumber(string? raw) 8 | { 9 | if (string.IsNullOrWhiteSpace(raw)) 10 | return ""; 11 | else 12 | raw = raw.ToUpperInvariant(); 13 | 14 | var newNumber = new StringBuilder(); 15 | foreach (var c in raw) 16 | { 17 | if (" -0123456789".Contains(c)) 18 | newNumber.Append(c); 19 | else 20 | { 21 | var result = TranslateToNumber(c); 22 | if (result != null) 23 | newNumber.Append(result); 24 | } 25 | // otherwise we've skipped a non-numeric char 26 | } 27 | return newNumber.ToString(); 28 | } 29 | 30 | static int? TranslateToNumber(char c) 31 | { 32 | if ('A' <= c && c <= 'C') 33 | return 2; 34 | if ('D' <= c && c <= 'F') 35 | return 3; 36 | if ('G' <= c && c <= 'I') 37 | return 4; 38 | if ('J' <= c && c <= 'L') 39 | return 5; 40 | if ('M' <= c && c <= 'O') 41 | return 6; 42 | if ('P' <= c && c <= 'S') 43 | return 7; 44 | if ('T' <= c && c <= 'V') 45 | return 8; 46 | if ('W' <= c && c <= 'Z') 47 | return 9; 48 | return null; 49 | } 50 | } -------------------------------------------------------------------------------- /Phoneword/Phoneword/MainActivity.cs: -------------------------------------------------------------------------------- 1 | using Core; 2 | 3 | namespace Phoneword; 4 | 5 | [Activity(Label = "Phone Word", MainLauncher = true, Icon = "@mipmap/ic_launcher")] 6 | public class MainActivity : Activity 7 | { 8 | protected override void OnCreate(Bundle? savedInstanceState) 9 | { 10 | base.OnCreate(savedInstanceState); 11 | 12 | // Set our view from the "main" layout resource 13 | SetContentView(Resource.Layout.Main); 14 | 15 | // Get our UI controls from the loaded layout 16 | EditText phoneNumberText = RequireViewById(Resource.Id.PhoneNumberText); 17 | Button translateButton = RequireViewById