Android实用的代码片段 常用代码总结

作者:mdxy-dxy 时间:2022-02-02 20:29:53 

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


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

2:让某个Activity透明

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


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

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


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

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)

6:发送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);

7:注册一个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();
            }
        }
    }

8:定义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) {} 
        }

9:获得 手机UA


public String getUserAgent()
    {
           String user_agent = ProductProperties.get(ProductProperties.USER_AGENT_KEY, null);
            return user_agent;
    }

10:清空手机上Cookie


CookieSyncManager.createInstance(getApplicationContext());
        CookieManager.getInstance().removeAllCookie();11:建立GPRS连接


 //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 用法


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获取数据


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();
                }
            }

标签:Android,常用代码
0
投稿

猜你喜欢

  • 解决mybatis update并非所有字段需要更新问题

    2022-12-09 10:20:55
  • 解决SpringBoot框架因post数据量过大没反应问题(踩坑)

    2023-11-28 11:59:30
  • Java如何在沙箱环境中测试支付宝支付接口

    2023-11-02 14:55:15
  • 通过实例深入了解java序列化

    2022-12-01 17:37:39
  • java利用jacob将word转pdf

    2023-02-05 08:23:03
  • C#中的一些延时函数

    2023-11-29 04:33:30
  • java解析Excel的方法(xls、xlsx两种格式)

    2021-10-12 16:29:39
  • Java通过HttpClient进行HTTP请求的代码详解

    2022-06-04 09:50:20
  • Android实现今日头条订阅频道效果

    2021-10-29 23:30:00
  • java并发分段锁实践代码

    2021-10-08 04:55:45
  • 如何通过Java实现时间轴过程解析

    2022-01-02 00:31:32
  • 深入谈谈C#9新特性的实际运用

    2021-05-26 16:08:23
  • Springboot+WebSocket实现一对一聊天和公告的示例代码

    2022-06-16 11:32:33
  • Java实现Excel导入导出的步骤详解

    2022-09-05 05:20:32
  • Android实现ImageView图片双击放大及缩小

    2022-04-07 10:34:06
  • SpringCloud Gateway HttpWebHandlerAdapter链路调用请求流程介绍

    2023-04-29 00:12:18
  • Spring Cloud Gateway替代zuul作为API网关的方法

    2023-05-03 07:19:58
  • Android 滑动监听的实例详解

    2023-10-28 14:32:32
  • java String类常量池分析及"equals"和"==”区别详细介绍

    2021-11-28 01:54:48
  • Android消息机制Handler的工作过程详解

    2023-07-31 13:49:03
  • asp之家 软件编程 m.aspxhome.com