用到 dialog弹出框时,不想要右上角的X 关闭功能,只是做个提示信息显示,下面是具体的去掉方法,大家可以参考下再用到 dialog弹出框时,不想要右上角的X 关闭功能,只是做个提示信息显示。在网上找了一些资料。网上找了三种解决方案:【第一种是可用的。】1、代码如下:$("#div1").dial...
分类:
Web程序 时间:
2015-05-05 18:37:26
阅读次数:
208
private void dial(String number) {Class c = TelephonyManager.class;Method getITelephonyMethod = null;try {getITelephonyMethod = c.getDeclaredMethod("g...
分类:
其他好文 时间:
2015-03-16 22:38:29
阅读次数:
146
[代码] 调用拨号程序 // 给移动客服10086拨打电话 Uri uri = Uri.parse("tel:10086"); Intent intent = new Intent(Intent.ACTION_DIAL, uri); startActivity(intent);[代码] 发送短信或彩...
分类:
移动开发 时间:
2015-03-15 23:32:34
阅读次数:
212
/*Note: this code is a demo for how to using gprs shield to send sms message, dial a voice call and send a http request to the website, upload data .....
分类:
其他好文 时间:
2015-03-14 09:32:40
阅读次数:
1355
Intent用法1.1启动一个特定的ActivityIntentintent=newIntent(CurrentActivity.this,OtherActivity.class);startActivity(intent);1.2启动一个未指明的ActivityIntentinter=newIntent(Intent.ACTION_DIAL,Uri.parse(“tel:115-1345”));startActivity(intent);1.3处理一个Activ..
分类:
移动开发 时间:
2015-03-07 18:46:59
阅读次数:
209
Intent 应该算是Android中特有的东西。你可以在Intent中指定程序 要执行的动作(比如:view,edit,dial),以及程序执行到该动作时所需要的资料。都指定好后,只要调用startActivity(),Android系统会自动寻找最符合你指定要求的应用 程序,并执行该程序。下面列...
分类:
其他好文 时间:
2015-03-02 16:23:05
阅读次数:
164
安卓系统下由于#号是属于内定字符,需要转义为%23第一种方式:adb shell service call phone 1 s16 "%23"第二种方式:adb shell am start -a android.intent.action.DIAL -d tel:%23如果拨号则为:adb she...
分类:
移动开发 时间:
2015-02-26 18:03:11
阅读次数:
618
说到activity自身的生命周期
要区分几个概念
1 Activity 官方解释为 “An Activity is an application component that provides a screen with which users can interact in order to do something, such as dial the phone, take ...
分类:
移动开发 时间:
2015-02-02 15:56:01
阅读次数:
260
package com.imooc.dialog;import android.app.Activity;import android.app.AlertDialog;import android.app.AlertDialog.Builder;import android.content.Dial...
分类:
移动开发 时间:
2015-02-01 21:44:47
阅读次数:
198
远程认证拨号用户服务(Remote Authentication Dial In User Service, RADIUS)是在网络访问服务器(Network Access Server, NAS)和集中存放认证信息的Radius服务器之间传输认证,授权和配置的协议,其client端多...
分类:
系统相关 时间:
2015-01-30 06:51:45
阅读次数:
201