`
文章列表
错误如下: 06-15 04:33:34.789: W/dalvikvm(2924): threadid=14: thread exiting with uncaught exception (group=0x40a791f8) 06-15 04:33:34.789: E/AndroidRuntime(2924): FATAL EXCEPTION: ComposeHandler 06-15 04:33:34.789: E/AndroidRuntime(2924): android.view.ViewRootImpl$CalledFromWrongThreadException: Only ...

Dialog样式

样式一: styles.xml <style name="Dialog" parent="android:style/Theme.Dialog"> <item name="android:windowNoTitle">true</item> <item name="android:windowFrame">@null</item> <!--边框--> <item name="android:window ...
【tcpdump抓包】 1、将tcpdump丢到手机的data目录下; 2、进入命令行并后台运行程序 adb shell->cd data->./tcpdump -s 0 -i any -w tcpdump.cap & 3、data下生成tcpdump.cap文件,记录包信息。   【wireshark-win32-1.4.7抓包】 安装程序即可。  
有一个常见的错误看法:只使用基础的布局结构会生产高效的布局。然而,每个您程序中的每个控件和布局都需要初始化、布局位置、和绘制。例如使用嵌套的LinearLayout 可以导致很多的层次结构。更严重的是,如果在嵌套的L ...
 public static boolean hasConnectedNetwork() {         ConnectivityManager connectivity = (ConnectivityManager)getApplication().getSystemService(Context.CONNECTIVITY_SERVICE);         if (connectivity != null) {             NetworkInfo[] info = connectivity.getAllNetworkInfo();             if (in ...

渐变图形

package com.mdrawable; import android.app.Activity;   import android.os.Bundle;   import android.view.View;   import android.content.Context;   import android.graphics.Canvas;   import android.graphics.Color;   import android.graphics.Paint;   import android.graphics.RectF;   import ...

kernel.txt

告诉你两种方法吧,其实本质是一样的。前提是adb shell能成功。1../adb shell#cd /data/anr#cat /proc/kmsg kernel.txt这时kernel.txt放在emulator中的/data/anr下。2../adb shell cat /proc/kmsg > kernel.txt这时kernel.txt放在adb所在的目录下。
/** * Broadcast receiver that set iptable rules on system startup. * This is necessary because the iptables rules are not persistent. * * Copyright (C) 2009-2010 Rodrigo Zechin Rosauro * * This program is free software: you can redistribute it and/or modify * it under the terms of the ...

报错误

Could not determine whether revision 1 is supported, assuming it is.       http://blog.csdn.net/Zengyangtech/article/details/5579311 http://dev.10086.cn/cmdn/wiki/index.php?doc-view-3440.html       E/Sensors ( 169): LightSensor: mPendingEvent.light:-2113929216 E/Sensors ( 169): E/Sen ...

CMDExecute

package com.TaskManager; import java.io.File; import java.io.IOException; import java.io.InputStream; public class CMDExecute{ /* * args[0]:shell鍛戒护 濡�ls"鎴�ls -l"; * args[1]:鍛戒护鎵ц璺緞 濡�/"; */ private String execute(String[] cmmand,String directory)throws IOExcepti ...

android布局对齐

 
gravity 本view内部信息的排列方式 layout_gravity是本view再父控件中的排列方式

TextView跑马灯

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android "     android:orientation="vertical"     android:layout_width="fill_parent"     android:layout_height="fill_parent" ...

堆栈处理activity

 
http://blog.csdn.net/geliang0120/article/details/6525842
摘要 :   手机号码不是所有的都能获取。只是有一部分可以拿到。这个是由于移动运营商没有把手机号码的数据写入到sim卡中.SIM卡只有唯一的编号,供网络与设备识别那就是IMSI号码,手机的信号也可以说是通过这个号码在 ...
android的EditText控件,内容右对齐 EditText光标在右边,输入内容从右往左: android:gravity="center_vertical|right" 或者 editText.setGravity(Gravity.RIGHT); android:numeric="integer" 设置只能输入整数,如果是小数则是:decimal
Global site tag (gtag.js) - Google Analytics