标签:
DisplayMetrics dm = new DisplayMetrics();
dm.widthPixels; //取得宽像素
dm.heightPixels; //取得高像素
//获取当地的日历
mMinute=c.get(Calendar.MINUTE); //获取分钟
//把EditText的内容设为可视或隐藏
/* 设定EditText的内容为可见的 */
editText.setTransformationMethod(
HideReturnsTransformationMethod.getInstance());
/* 设定EditText的内容为隐藏的 */
editText.setTransformationMethod(
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
//设置取消全屏
WindowManager.LayoutParams attrs = getWindow().getAttributes();
attrs.flags &= (~WindowManager.LayoutParams.FLAG_FULLSCREEN); getWindow().setAttributes(attrs); getWindow().clearFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);
requestWindowFeature(Window.FEATURE_NO_TITLE);
//设置禁止手机横屏(在setContentView之前设置)
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_NOSENSOR);
//调用手机默认的摄像功能,而且可以设定储存位置
Intent i = new Intent("android.media.action.IMAGE_CAPTURE");
i.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(Environment .getExternalStorageDirectory(),"pic.jpg")));
//解决中文乱码方法
A. 使用getBytes("") 来对汉字进行重编码,得到它的字节数组
B. 再使用new String(Bytes[] , "解码方式") 来对字节数组进行相应的解码
//在Android中轻松实现横竖屏的布局
竖屏的布局一般在layout下面设置;横屏的布局则在layout的同等级文件夹创建名字layout-land的文件夹。模拟器可以使用Ctrl+F11进行快速切换。
//Android横竖屏切换不重启Activity
androidmanifest.xml中的activit元素加入这个属性android:configChanges="orientation|keyboardHidden"
然后在Activity中重载以下方法:
// TODO Auto-generated method stub
if (newConfig.orientation==Configuration.ORIENTATION_LANDSCAPE) {
setContentView(R.layout.imageswitch);
//横屏
} else {
setContentView(R.layout.editcontact);//竖屏
}
super.onConfigurationChanged(newConfig);
}
卸载程序:
Uri packageURI = Uri.parse("package:com.demo.CanavaCancel");
安装apk:
startActivity(intent)
标签:
原文地址:http://www.cnblogs.com/raffeale/p/4591137.html