`

android 开发实用

阅读更多
Android很有用的代码片段
1:查看是否有存储卡插入

[img]
1.String status=Environment.getExternalStorageState();   
2.if(status.equals(Enviroment.MEDIA_MOUNTED))   
3.{   
4.   说明有SD卡插入   
5.} 
[/img]
2:让某个Activity透明

OnCreate中不设Layout this.setTheme(R.style.Theme_Transparent);
以下是Theme_Transparent的定义(注意transparent_bg是一副透明的图片)


3:在屏幕元素中设置句柄

使用Activity.findViewById来取得屏幕上的元素的句柄. 使用该句柄您可以设置或获取任何该对象外露的值.

1.TextView msgTextView = (TextView)findViewById(R.id.msg);   
2.   msgTextView.setText(R.string.push_me); 
 

4:发送短信


1. String body=”this is mms demo”;   
2.Intent mmsintent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts(”smsto”, number, null));    
3.mmsintent.putExtra(Messaging.KEY_ACTION_SENDTO_MESSAGE_BODY, body);   
4.mmsintent.putExtra(Messaging.KEY_ACTION_SENDTO_COMPOSE_MODE, true);    
5.mmsintent.putExtra(Messaging.KEY_ACTION_SENDTO_EXIT_ON_SENT, true);    
6. startActivity(mmsintent);  
            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:发送彩信

1.StringBuilder sb = new StringBuilder();   
2. sb.append(”file://”);   
3. sb.append(fd.getAbsoluteFile());   
4. Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts(”mmsto”, number, null));   
5. // Below extra datas are all optional.   
6. intent.putExtra(Messaging.KEY_ACTION_SENDTO_MESSAGE_SUBJECT, subject);   
7. intent.putExtra(Messaging.KEY_ACTION_SENDTO_MESSAGE_BODY, body);   
8. intent.putExtra(Messaging.KEY_ACTION_SENDTO_CONTENT_URI, sb.toString());   
9. intent.putExtra(Messaging.KEY_ACTION_SENDTO_COMPOSE_MODE, composeMode);   
10. intent.putExtra(Messaging.KEY_ACTION_SENDTO_EXIT_ON_SENT, exitOnSent);   
11. startActivity(intent);  
           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);

6:发送Mail

1. mime = “img/jpg”;   
2.shareIntent.setDataAndType(Uri.fromFile(fd), mime);   
3.shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(fd));   
4.shareIntent.putExtra(Intent.EXTRA_SUBJECT, subject);   
5.shareIntent.putExtra(Intent.EXTRA_TEXT, body);  
             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);

7:注册一个BroadcastReceiver

1.registerReceiver(mMasterResetReciever, new IntentFilter(”oms.action.MASTERRESET”));   
2.private BroadcastReceiver mMasterResetReciever = new BroadcastReceiver() {   
3.        public void onReceive(Context context, Intent intent){   
4.            String action = intent.getAction();   
5.            if(”oms.action.MASTERRESET”.equals(action)){   
6.                RecoverDefaultConfig();   
7.            }   
8.        }   
9.    };  
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();
            }
        }
    };


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

  
1.private ContentObserver mDownloadsObserver = new DownloadsChangeObserver(Downloads.CONTENT_URI);   
2.private class DownloadsChangeObserver extends ContentObserver {   
3.        public DownloadsChangeObserver(Uri uri) {   
4.            super(new Handler());   
5.        }   
6.        @Override  
7.        public void onChange(boolean selfChange) {}     
8.        }   
9.    
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) {}  
        }
  


9:获得 手机UA
1.public String getUserAgent()   
2.    {   
3.           String user_agent = ProductProperties.get(ProductProperties.USER_AGENT_KEY, null);   
4.            return user_agent;   
5.    }  
public String getUserAgent()
    {
           String user_agent = ProductProperties.get(ProductProperties.USER_AGENT_KEY, null);
            return user_agent;
    }

10:清空手机上Cookie

1.CookieSyncManager.createInstance(getApplicationContext());   
2.        CookieManager.getInstance().removeAllCookie();  
CookieSyncManager.createInstance(getApplicationContext());
        CookieManager.getInstance().removeAllCookie();

11:建立GPRS连接


1.//Dial the GPRS link.   
2. private boolean openDataConnection() {   
3.     // Set up data connection.   
4.     DataConnection conn = DataConnection.getInstance();        
5.         if (connectMode == 0) {   
6.             ret = conn.openConnection(mContext, “cmwap”, “cmwap”, “cmwap”);   
7.         } else {   
8.             ret = conn.openConnection(mContext, “cmnet”, “”, “”);   
9.         }   
10. }  
   //Dial the GPRS link.
    private boolean openDataConnection() {
        // Set up data connection.
        DataConnection conn = DataConnection.getInstance();     
            if (connectMode == 0) {
                ret = conn.openConnection(mContext, “cmwap”, “cmwap”, “cmwap”);
            } else {
                ret = conn.openConnection(mContext, “cmnet”, “”, “”);
            }
    }


12:PreferenceActivity 用法

1.public class Setting extends PreferenceActivity   
2.{   
3.    public void onCreate(Bundle savedInstanceState) {   
4.        super.onCreate(savedInstanceState);   
5.        addPreferencesFromResource(R.xml.settings);   
6.    }   
7.}   
8.Setting.xml:   
9.            android:key=”seting2″   
10.            android:title=”@string/seting2″   
11.            android:summary=”@string/seting2″/>   
12.            android:key=”seting1″   
13.            android:title=”@string/seting1″   
14.            android:summaryOff=”@string/seting1summaryOff”   
15.            android:summaryOn=”@stringseting1summaryOff”/>  
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”/>

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

1. DefaultHttpClient httpClient = new DefaultHttpClient();   
2.HttpGet method = new HttpGet(“http://www.baidu.com/1.html”);   
3.HttpResponse resp;   
4.Reader reader = null;   
5.try {   
6.    // AllClientPNames.TIMEOUT   
7.    HttpParams params = new BasicHttpParams();   
8.    params.setIntParameter(AllClientPNames.CONNECTION_TIMEOUT, 10000);   
9.    httpClient.setParams(params);   
10.    resp = httpClient.execute(method);   
11.    int status = resp.getStatusLine().getStatusCode();   
12.    if (status != HttpStatus.SC_OK) return false;   
13.    // HttpStatus.SC_OK;   
14.    return true;   
15.} catch (ClientProtocolException e) {   
16.    // TODO Auto-generated catch block   
17.    e.printStackTrace();   
18.} catch (IOException e) {   
19.    // TODO Auto-generated catch block   
20.    e.printStackTrace();   
21.} finally {   
22.    if (reader != null) try {   
23.        reader.close();   
24.    } catch (IOException e) {   
25.        // TODO Auto-generated catch block   
26.        e.printStackTrace();   
27.    }   
28.}  
             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();
                }
            }

14:显示toast

Java代码 
1.  
2.Toast.makeText(this._getApplicationContext(), R.string._item, Toast.LENGTH_SHORT).show();   

the end .......
分享到:
评论

相关推荐

    android开发实用教程

    Android第七章Android广播机制最新版,实用教程,2019年,基于广播机制,通信互用,Android开发

    基于Java的Android开发实用工具集合设计源码

    本项目为基于Java的Android开发实用工具集合设计源码,包含632个文件,涵盖296个Java源文件、151个PNG图片文件、144个XML配置文件、11个JPG图片文件、8个SO库文件、5个JAR包文件、4个Gradle文件、3个gitignore文件、...

    基于Kotlin的Android开发实用工具类集合设计源码

    该项目是一款基于Kotlin的Android开发实用工具类集合设计源码,包含958个文件,包括402个Kotlin文件、246个XML配置文件、207个PNG图片文件、56个Java文件、9个Gradle文件、8个Git忽略文件、8个JPG图片文件、7个...

    Android开发实用教程

    详细介绍Android开发的理论基础,书中还附有示例。并且书中还附带了Android开发中总结的笔记心得。

    android开发实用技巧

    在Android开发领域,掌握实用技巧是提升开发效率和产品质量的关键。本资料主要针对初学者,旨在帮助你快速入门,从搭建开发环境到实现具体功能,再到应用市场发布,覆盖了整个开发流程。以下将详细阐述其中涉及的...

    基于Java的Android开发实用工具类集合设计源码

    该项目为Android开发者量身打造的实用工具类集合设计源码,包含666个文件,涵盖323个Java源文件、153个XML配置文件、158个PNG图片文件以及少量其他类型文件。集成了支付宝支付、微信支付(统一下单)、微信分享、Zip...

    droidenv:用于 zsh 的 Android 开发实用程序

    Android 开发实用功能 用法 droidenv : 初始化给定目标的环境 compile : 编译整个树 (make -j4) 或子文件夹 (mmm && make snod) emu : 运行模拟器 安装 克隆回购 git clone https://github.com/rchiossi/droidenv ~...

    basic4android+开发教程实用.pdf

    Basic4android 开发教程实用.pdf 本文档提供了 Basic4android 开发教程的实用指南,旨在帮助开发者快速上手 Basic4android 开发。该教程涵盖了从建立模拟器到生成第一个 Hello world 程序的整个过程。 一、建立...

    android.rar

    在标签中提到的"android开发实用书籍打包下载,开发者必备",暗示了这些资料对于Android开发者来说是必不可少的,涵盖了实际开发过程中的关键知识点。这些书籍可能包含了从基础到高级的各种主题,帮助开发者提高技能...

    android应用开发范例精解

    《Android应用开发范例精解》通过通俗易懂的开发实例及项目案例,详细介绍了Android应用开发的知识体系及实用开发技术。 《Android应用开发范例精解》共14章,分为3篇。第1篇为基础篇,涵盖Android背景及开发环境和...

    Android+Cookbook实用开发技巧集101.pdf

    这本书旨在帮助开发者在面对Android开发中的各种挑战时,能够快速找到解决方法,提升开发效率。以下将对书中的一些关键知识点进行详细阐述。 1. **用户界面设计**:Android Cookbool会深入讲解如何使用布局管理器...

    android 开发笔记

    在Android开发领域,掌握扎实的基础和实用技巧是至关重要的。"Android开发笔记"是由real6410公司为开发者提供的一份宝贵的资源,特别针对real6410开发板进行优化,旨在帮助开发者快速提升Android应用开发技能。这份...

    android实用教程

    本教程涵盖了Android开发的各个方面,旨在帮助读者掌握构建Android应用的核心技能。在这一千余字的篇幅中,我们将详细探讨Android开发的基础知识、环境搭建、UI设计、数据存储、网络通信、多线程处理以及调试技巧。 ...

    android开发实战经典

    这本书名为《Android开发实战经典》,由李兴华编著,是一本针对Android开发的实用教材。从标题和描述中,我们可以得知它是一本专注于Android平台开发的专业书籍,内容涵盖了从基础知识到实战技巧的全面介绍。该书...

    李兴华Android开发实战经典-PPT课件-笔记

    总之,《李兴华Android开发实战经典》是一套全面而实用的Android开发课程,无论你是初学者还是有一定经验的开发者,都能从中受益匪浅。通过系统的学习和实践,你将能够独立开发出高质量的Android应用程序。

    android开发入门与实践PDF+源代码.rar

    总的来说,《Android开发入门与实践》是一本全面而实用的教材,无论你是零基础的新手还是有一定经验的开发者,都能从中受益。通过阅读这本书和实践其中的代码,你将迈入Android开发的世界,逐步成长为一名合格的...

    android程序开发实用教程电子课件.rar

    《Android程序开发实用教程》是一份全面且深入的电子课件资源,专为初学者设计,旨在引导读者踏入Android开发的世界。这份教程共分为十五章节,涵盖了从基础到进阶的多个方面,确保学习者能够逐步掌握Android应用...

    2020原生Android基础实用开发

    哔哩哔哩"2020原生Android基础实用开发"视频的学习笔记

    android免费开发资料.zip

    这份教程详细介绍了如何在计算机上安装和配置Android开发环境,包括安装Java JDK、设置环境变量、下载Android Studio、创建虚拟设备或连接真实设备等步骤,对于初学者来说非常实用。 6. **Android2.3用户手册.pdf**...

Global site tag (gtag.js) - Google Analytics