android—uri
等我爱你
我是一个单身滴男人,需要找个单身滴女人
展开
-
android Uri点击跳转地址
new Thread() { public void run() { Uri uri = Uri.parse(url); // 要转向的目标 Intent intent = new Intent(Intent.ACTION_VIEW, uri); startActivity(intent);// 启动应用程序 }; }.start(); ...原创 2011-12-21 17:45:55 · 144 阅读 · 0 评论 -
Android权限Uri.parse的几种用法
1,调web浏览器 Uri myBlogUri = Uri.parse("http://xxxxx.com"); returnIt = new Intent(Intent.ACTION_VIEW, myBlogUri); 2,地图 Uri mapUri = Uri.parse("geo:38.899533,-77.036476"); returnIt = new Intent(Intent.ACT...原创 2012-05-08 09:54:57 · 146 阅读 · 0 评论 -
拨打电话和发送信息
//打电话 class SendCallClickListener implements OnClickListener {iphone5 public void onClick(View v) { //调用Android系统API打电话 Uri uri = Uri.parse("tel:15800...原创 2011-12-01 09:42:29 · 140 阅读 · 0 评论 -
ProgressDialog
mian.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_p...原创 2012-03-14 15:53:31 · 86 阅读 · 0 评论