14个简单有用的android源码,适合初学者

1:查看是否有存储卡插入String status=Environment.getExternalStorageState();if(status.equals(Enviroment.MEDIA_MOUNTED)){ ;//说明有SD卡插入}2:让某个Activity透明在OnCreate 中不设Layout,然后this.setTheme(R.style.Th

大家好,又见面了,我是全栈君。

1:查看是否有存储卡插入

String status=Environment.getExternalStorageState();
if(status.equals(Enviroment.MEDIA_MOUNTED))
{
   ;//说明有SD卡插入
}

2:让某个Activity透明

在OnCreate 中不设Layout,然后this.setTheme(R.style.Theme_Transparent);

3:获取屏幕宽高

DisplayMetrics dm = new DisplayMetrics();  
//获取窗口属性
getWindowManager().getDefaultDisplay().getMetrics(dm);    
int screenWidth = dm.widthPixels;  
int screenHeight = dm.heightPixels;

4:发送短信

String body=”this is mms demo”;
Intent mmsIntent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts(”smsto”, number, null));
mmsIntent.putExtra(Messaging.KEY_ACTION_SENDTO_MESSAGE_BODY, body);
mmsIntent.putExtra(Messaging.KEY_ACTION_SENDTO_COMPOSE_MODE, true);
mmsIntent.putExtra(Messaging.KEY_ACTION_SENDTO_EXIT_ON_SENT, true);
startActivity(mmsIntent);

   5:发送彩信

StringBuilder sb = new StringBuilder();
            sb.append(”file://”);
            sb.append(fd.getAbsoluteFile());
            Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts(”mmsto”, number, null));
            // Below extra datas are all optional.
            intent.putExtra(Messaging.KEY_ACTION_SENDTO_MESSAGE_SUBJECT, subject);
            intent.putExtra(Messaging.KEY_ACTION_SENDTO_MESSAGE_BODY, body);
            intent.putExtra(Messaging.KEY_ACTION_SENDTO_CONTENT_URI, sb.toString());
            intent.putExtra(Messaging.KEY_ACTION_SENDTO_COMPOSE_MODE, composeMode);
            intent.putExtra(Messaging.KEY_ACTION_SENDTO_EXIT_ON_SENT, exitOnSent);
            startActivity(intent);

7:发送Mail

   mime = “img/jpg”;
            shareIntent.setDataAndType(Uri.fromFile(fd), mime);
            shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(fd));
            shareIntent.putExtra(Intent.EXTRA_SUBJECT, subject);
            shareIntent.putExtra(Intent.EXTRA_TEXT, body);

8:注册一个 BroadcastReceiver

registerReceiver(mMasterResetReciever, new IntentFilter(”oms.action.MASTERRESET”));
private BroadcastReceiver mMasterResetReciever = new BroadcastReceiver() {
        public void onReceive(Context context, Intent intent){
            String action = intent.getAction();
            if(”oms.action.MASTERRESET”.equals(action)){
                RecoverDefaultConfig();
            }
        }
    };

9:定义ContentObserver,监听某个数据表

private ContentObserver mDownloadsObserver = new DownloadsChangeObserver(Downloads.CONTENT_URI);
private class DownloadsChangeObserver extends ContentObserver {
        public DownloadsChangeObserver(Uri uri) {
            super(new Handler());
        }
        @Override
        public void onChange(boolean selfChange) {}  
        }

10:获得 手机UA

public String getUserAgent() { 

String user_agent = ProductProperties.get(ProductProperties.USER_AGENT_KEY, null);

return user_agent; 

}

11:清空手机上Cookie

CookieSyncManager.createInstance(getApplicationContext()); 

CookieManager.getInstance().removeAllCookie();

12:建立GPRS 连接

private boolean openDataConnection() { 

DataConnection conn = DataConnection.getInstance();

 if (connectMode == 0) { 

  ret = conn.openConnection(mContext, “cmwap”, “cmwap”, “cmwap”);

 } else { 

  ret = conn.openConnection(mContext, “cmnet”, “”, “”); 

}

}

13:PreferenceActivity 用法

public class Setting extends PreferenceActivity{

 public void onCreate(Bundle savedInstanceState) { 

 super.onCreate(savedInstanceState);

 addPreferencesFromResource(R.xml.settings);

 }

}

Setting.xml:

android:key=”seting2″ 

android:title=”@string/seting2″ 

android:summary=”@string/seting2″/> 

android:key=”seting1″ 

android:title=”@string/seting1″ 

android:summaryOff=”@string/seting1summaryOff” 

android:summaryOn=”@stringseting1summaryOff”/>

14:通过 HttpClient从指定server获取数据

 DefaultHttpClient httpClient = new DefaultHttpClient(); 

HttpGet method = new HttpGet(“http://www.baidu.com/1.html”); 

HttpResponse resp; 

Reader reader = null; 

try { 

// AllClientPNames.TIMEOUT 

HttpParams params = new BasicHttpParams(); 

params.setIntParameter(AllClientPNames.CONNECTION_TIMEOUT, 10000); 

httpClient.setParams(params);

resp = httpClient.execute(method); 

int status = resp.getStatusLine().getStatusCode(); 

if (status != HttpStatus.SC_OK)

 return false;

 // HttpStatus.SC_OK;

 return true;

 } catch (ClientProtocolException e) { 

// TODO Auto-generated catch block 

e.printStackTrace(); 

} catch (IOException e) { 

// TODO Auto-generated catch block e.printStackTrace();

 } finally { 

if (reader != null) 

try {

 reader.close(); 

} catch (IOException e) { 

// TODO Auto-generated 

catch block e.printStackTrace();

 } 

}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/121444.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 《前端运维》一、Linux基础–08Shell其他及补充

    这一篇,我们来学习一些重要的命令,在工作中也会经常用到。一、简单正则要注意的是,有些命令不支持正则模式,比如fs、find等,有些是支持正则的,比如grep、awk、sed等。正则的语法和js中的

  • 网站推荐:11个相似图片搜索网站(以图找图)

    网站推荐:11个相似图片搜索网站(以图找图)你想凭着一张现有图片找出它的原始图片,或者是凭着一张小的缩略图找出原始大图吗?下面的十款搜索引擎可以帮你实现,以图找图,以图搜图,以图片搜索相似的图片。一:http://tineye.com/Tineye是典型的以图找图搜索引擎,输入本地硬盘上的图片或者输入图片网址,即可自动帮你搜索相似图片,搜索准确度相对来说还比较令人满意。TinEye是加拿大Idée公司研发…

  • windows命令行查看盘符列表_命令提示符怎么切换目录

    windows命令行查看盘符列表_命令提示符怎么切换目录1、windows系统使用快捷键:WIN+R,调出运行命令窗口,并输入CMD,回车进入dos界面:如下图所示:如上图所示可以看出我我所在目录是在C盘,现在我想要切换到D盘的某一个指定目录下,如:D:\software\back\java\tools\RabbitMQ\rabbitmq_server-3.7.3步骤1如下及步骤配图:相关命令#先从C盘切换至D盘

    2022年10月15日
  • RPC是什么意思?[通俗易懂]

    原文地址:http://baike.baidu.com/link?url=ZV6b0T5v04pem1NluXrFwslmhOosGK3YAeKYBfXHF3J-cg96O7CE9j_opGpKCftpBKWqLtY9-LycDAX0ULaLpssX4IIVmK6fSdtZBzz6nbFRsA-vXppB4IV1KBfDu07pY2dgZYTn5A65RkuhPO00bf5ngU6qfujFC14

  • json格式_如何写一个格式化json的程序

    json格式_如何写一个格式化json的程序true,'errMsg'=>'','member'=>array(array('name'=>&#

  • pygame安装(超级详细)

    pygame安装(超级详细)安装时是需要设置python环境变量的,下载python的时候底下有个小框框(没有默认选中)AddPython3.7toPATH需要选择的,如果没有选择的话,需要自己设置,我一般比较懒,卸载了python重新下载的,让下载器自动设置。然后是python版本问题有人疑问这是64位还是32位,看那个[64bit]是64位,至于后面的on32是在windows上使用的意思,在Linux上…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号