기본 콘텐츠로 건너뛰기

12월, 2014의 게시물 표시

[android] 자바스크립트에서 함수 호출 및 자바스크립트 호출하기

[자바스크립트에서 안드로이드 함수 호출] 1. 인터페이스 클래스 생성 targetSdkVersion 을 17이상이면  @JavascriptInterface를 꼭 추가해야한다. 추가하지 않으면 함수가 동작하지 않는다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 public   class  WebAppInterface  {        Context mContext;         /** Instantiate the interface and set the context */        WebAppInterface(Context c)   {                mContext  =  c;         }         /** Show a toast from the web page */         @JavascriptInterface         public   void   showToast ( String  toast)   {                Toast.makeText(mContext,  toast,  Toast.LENGTH_SHORT) .show( ...

[android] 폰과 태블릿 구분

Colored By Color Scripter ™ 1 2 3 4 5 6 7 8 9 10 boolean  isTablet  ( )   {                   int  portrait_width_pixel=Math.min( this .getResources( ) .getDisplayMetrics( ) .widthPixels,   this .getResources( ) .getDisplayMetrics( ) .heightPixels) ;                 int  dots_per_virtual_inch= this .getResources( ) .getDisplayMetrics( ) .densityDpi;                 float  virutal_width_inch=portrait_width_pixel/dots_per_virtual_inch;                 if   (virutal_width_inch  < =  2)   {                         return   false ;                 }   else   {                 ...