웹뷰(2)
-
[안드로이드,Android]WebView,웹뷰
package com.example.ggari_webview; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.webkit.WebSettings; import android.webkit.WebView; import android.webkit.WebViewClient; import android.widget.EditText; public class MainActivity extends Activity { WebView webview; @Override protected void onCreate(Bundle sa..
2013.02.05 -
젤리빈(Jelly Bean) 4.1 이상 WebView 사진선택 openFileChooser 방법
@SuppressWarnings("unused") public void openFileChooser(ValueCallback uploadMsg) { openFileChooser(uploadMsg, ""); } // For Android 3.0+ public void openFileChooser(ValueCallback uploadMsg, String acceptType) { mUploadMessage = uploadMsg; Intent i = new Intent(Intent.ACTION_GET_CONTENT); i.addCategory(Intent.CATEGORY_OPENABLE); i.setType("image/*"); startActivityForResult(Intent.createChooser(i,..
2012.12.28