uti | platform | packages | |||||
---|---|---|---|---|---|---|---|
com.xamarin.workbook |
iOS |
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open System | |
type Sound = Z | D | K | |
with | |
override this.ToString() = | |
match this with | |
| Z -> "ズン" | |
| D -> "ドコ" | |
| K -> "キ・ヨ・シ!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected override void OnCreate(Bundle bundle) | |
{ | |
ToolbarResource = Resource.Layout.toolbar; | |
TabLayoutResource = Resource.Layout.tabs; | |
base.OnCreate(bundle); | |
Window.SetSoftInputMode(SoftInput.AdjustResize); | |
if (Build.VERSION.SdkInt >= BuildVersionCodes.Lollipop) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
package="your.awesome.app"> | |
<application> | |
<!-- need provider tag in application tag --> | |
<provider | |
android:name="android.support.v4.content.FileProvider" |