public void postData() { // Create a new HttpClient and Post Header HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost("http://www.yoursite.com/script.php"); try { // Ad
本类主要功能有: 1.创建文件功能; 2.向文件中写入字节数组; 3.向文件中写入字符串; 4.从文件中读取字节数组; 5.从文件中读取字符串; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; /** * 文件读写工具类 * * @author bear * */ publi
private String readFromFile(Context context){ if (Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState())) { String foldername = Environment.getExternalStorageDirectory().getPath()+ "/
public class NetworkUtils { // 判断当前网络是否可用 public static boolean networkIsConnect(Context context) { ConnectivityManager conn = (ConnectivityManager) context .getSystemService(Context.CONNECTIVITY_SERV
public class DensityUtils { public static int Dp2Px(Context context, float dp) { final float scale = context.getResources().getDisplayMetrics().density; return (int) (dp * scale + 0.5f); } public stat
public class ActionersView extends View { private Paint mPaint = new Paint(); private Paint txtPaint = new Paint();//文字画笔 private Path mPath = new Path();//手指滑动路径 private Canvas mCanvas;//缓存画布 private
try { Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:+110")); startActivity(intent); } catch (Exception e) { Log.e("SampleApp", "Failed to invoke call", e); }
@Override public void onAttachedToWindow() { super.onAttachedToWindow(); //该方法黑屏 //this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD); //该方法背景透明 this.getWindow().setType(WindowManager.
public class SplashScreen extends Activity { /** * 处理闪屏(Splash)事件的线程 */ private Thread mSplashThread; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInsta
/** * 返回的 bitmap就是屏幕的内容 */ private static Bitmap takeScreenShot(Activity activity) { View view = activity.getWindow().getDecorView(); // Enables or disables the drawing cache view.setDrawingCacheEnabl
public String getLocalIpAddress() { try { for (Enumeration<NetworkInterface> en = NetworkInterface .getNetworkInterfaces(); en.hasMoreElements();) { NetworkInterface intf = en.nextElement(); for (Enum
原理: 最简单的数据加密就是采用Base64,虽然会带有数据冗余,但是写法简单,不用做过多的修改,其实也可以采用异或加密。 代码: 这里就直接上代码吧,写法很简单。 public static final boolean DownlaodAppFile(Context mContext, String url, String cacheName, boolean replace) { File r
1、需要RootTools.jar 2、执行脚本 public class InstallerActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(
public class DensityUtils { /** * 根据手机的分辨率从 dp 的单位 转成为 px(像素) */ public static int dip2px(Context context, float dpValue) { final float scale = context.getResources().getDisplayMetrics().density; retu
import java.util.regex.Pattern; /** * 表单校验工具类 * * @author sunger * */ public class FormValidation { /** * 手机号校验 注:1.支持最新170手机号码 2.支持+86校验 * * @param phoneNum * 手机号码 * @return 验证通过返回true */ public stat
主要用到了MediaRecorder类,实现代码如下: MediaRecorder mRecorder = new MediaRecorder(); mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC); mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); Fil
try { Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:+110")); startActivity(intent); } catch (Exception e) { Log.e("SampleApp", "Failed to invoke call", e); }
int bmpWidth = bmp.getWidth(); int bmpHeight = bmp.getHeight(); /* 设定图片放大的比例 */ double scale = 1.25; /* 计算这次要放大的比例 */ scaleWidth = (float) (scaleWidth * scale); scaleHeight = (float) (scaleHeight * sc
在想要横屏的Activity中修改其onResume方法 @Override protected void onResume() { // TODO Auto-generated method stub /** * 设置为横屏 */ if (getRequestedOrientation() != ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE) { setRe
在Jni中通过 env->CallStaticVoidMethod去做callback的时候,总会挂掉 原因是JniEnv是和线程相关的,只能在对应创建的线程中使用 而JVM却是进程相关的,可以通过JVM来获取线程相关的JNIENV。 初始化如下 static void com_test_Player_native_init(JNIEnv *env) { jclass clazz; clazz =