C#/Xamarin Maui
(Xamarin) 화면에 바로 나타나는 키보드 창 안나오게 하기
kjun.kr
2017. 4. 13. 12:40
728x90
[Activity(Label = "TestActivity", MainLauncher = false, Icon = "@drawable/icon", WindowSoftInputMode = SoftInput.AdjustPan)]
public class TestActivity : Activity
{
}
WindowSoftInputMode = SoftInput.AdjustPan 을 넣으면 클릭이나 터치를 해야 입력 키보드가 나타난다.
public class TestActivity : Activity
{
}
WindowSoftInputMode = SoftInput.AdjustPan 을 넣으면 클릭이나 터치를 해야 입력 키보드가 나타난다.
728x90