2016-08-11 3 views

답변

2

AndroidManifest.xml을 업데이트하고 터치 스크린이 아닌 크롬 북으로 고객에게 다가 가기를 원한다면 필요하지 않은 것으로 터치 스크린을 설정하십시오.

다음 예제와 같이 android.hardware.touchscreen 기능이 필요하지 않도록 설정을 조정하십시오.

<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
      ... > 
    <!-- Some Chromebooks don't support touch. Although not essential, 
     it's a good idea to explicitly include this declaration. --> 
    <uses-feature android:name="android.hardware.touchscreen" 
        required="false" /> 
</manifest> 

자세한 내용은 여기를 참조하십시오 Optimizing Apps for Chromebooks