package cn.itcast.html; import java.util.ArrayList; import java.util.List; import org.json.JSONArray; import org.json.JSONObject; import cn.itcast.domain.Contact; import android.app.Activity; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.os.Handler; import android.util.Log; import android.webkit.WebView; public class ContactActivity extends Activity { private static final String TAG = "ContactActivity"; private WebView webView; private Handler handler = new Handler(); @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); webView = (WebView)this.findViewById(R.id.webView); webView.getSettings().setJavaScriptEnabled(true);//设置支持javaScript webView.getSettings().setSaveFormData(false);//不保存表单数据 webView.getSettings().setSavePassword(false);//不保存密码 webView.getSettings().setSupportZoom(false);//不支持页面放大功能 //addJavascriptInterface方法中要绑定的Java对象及方法要运行在另外的线程中,不能运行在构造他的线程中 webView.addJavascriptInterface(new MyJavaScript(), "itcast"); webView.loadUrl("file:///android_asset/index.html"); } private final class MyJavaScript{ public void call(final String phone){ handler.post(new Runnable() { @Override public void run() { Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:"+ phone)); startActivity(intent); } }); } /** * 获取所有联系人 */ public void getContacts(){ handler.post(new Runnable() { @Override public void run() { //可以通过访问SQLLite数据库得到联系人 List<Contact> contacts = new ArrayList<Contact>(); contacts.add(new Contact(27, "路飞", "12345")); contacts.add(new Contact(28, "索隆", "67890")); String json = buildJson(contacts); webView.loadUrl("javascript:show('"+ json +"')"); } }); } //生成Json格式的数据 private String buildJson(List<Contact> contacts){ try { JSONArray array = new JSONArray(); for(Contact contact : contacts){ JSONObject item = new JSONObject(); item.put("id", contact.getId()); item.put("name", contact.getName()); item.put("phone", contact.getPhone()); array.put(item); } return array.toString(); } catch (Exception e) { Log.e(TAG, e.toString()); } return ""; } } } |