- 浏览: 237458 次
- 性别:
- 来自: 苏州
-
最新评论
-
Leif_冬:
...
android studio首次安装运行时卡在更新处理方法 -
zzszxn:
不行啊,在页面上显示的背景是黑的啊,不是透明的啊!
android canvas 设置背景透明 -
Leif_冬:
...
java 读取文件方法
文章列表
Wi-Fi: Wi-Fi (Wireless Fidelity)是无线局域网联盟(WLANA)的一个商标。该商标仅保障使用该商标的商品互相之间可以合作。WIFI是指由AP(Access Point)和无线网卡组成的无线网络。Wi-Fi使用的是IEEE标准。故误称为802.11b为Wi-Fi。根据无线网卡 ...
SlipButton.java:
package com.wistron.other;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Matrix;
import android.graphics.Paint;
import android.graphics.Rect;
import androi ...
private int width,height;
方法一:
DisplayMetrics dm = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(dm);
width = dm.widthPixels;
height = dm.heightPixels;
方法二:
Display display = getWindowManager().getDefaultDisplay();
...
com.google.android.setupwizard
com.google.android.setupwizard.SetupWizardActivity
// Add a persistent setting to allow other apps to know the device hasbeen provisioned.
Settings.Secure.putInt(getContentResolver(),Settings.Secure.DEVICE_PROVISIONED, 1);
// remove this ...
在刚进入ui的时候,如果UI中有EDITTEXT,它会自动获取焦点弹出键盘,有的时候我们不需要这样.
就要取消它自动获取焦点.
只要在它属于的LinearLayout中加上下面两句就可以:
android:focusable = "true"
android:focusableInTouchMode = "true"
instanceof 运算符是用来在运行时指出对象是否是特定类的一个实例。instanceof通过返回一个布尔值来指出,这个对象是否是这个特定类或者是它的子类的一个实例。 用法:
result = object instanceof class
参数:
result
必选项。任意变量。
object
必选项。任意对象表达式。
class
必选项。任意已定义的对象类。
说明:
如果 object 是 class 的一个实例,则 instanceof 运算符返回 true。如果 object 不是指定类的一个实例,或者 object 是 null,则返回 fa ...
在获取控件大小的时候,如果控件没有measure过.获取的大小就会是0.
设置控件的属性为invisible或者为gone时,如过经过measure过,同样也会获取到控件的大小.
visibleTextView = (TextView)findViewById(R.id.invi);
goneTextView = (TextView)findViewById(R.id.gone);
visibleTextView.setVisibility(View.GONE);
goneTextView.setVisibility(View.I ...
在Android应用程序开发的时候,从一个Activity启动另一个Activity并传递一些数据到新的Activity上非常简单,但是当您需要让后台运行的Activity回到前台并传递一些数据可能就会存在一点点小问题。
首先,在默认情况下,当您通过I ...
本次講的是如何對activity的區域進行監聽,當點擊它以外的區域時執行finish的操作.
@Override
public boolean onTouchEvent(MotionEvent event) {
// TODO Auto-generated method stub
if(event.getAction() == MotionEvent.ACTION_UP){
Rect rect = new Rect(0, 0, 0, 0);
this.getWindow().getDecorView().getHitRect(rect);
i ...
程序開發的過程中有時候會遇到模擬按鍵和模擬touch的事件:
1,模擬touch事件:
public void SetTouch(float x,float y){
Instrumentation inst = new Instrumentation();
MotionEvent e = MotionEvent.obtain(SystemClock.uptimeMillis(),SystemClock.uptimeMillis(),MotionEvent.ACTION_DOWN,x,y,0);
inst.sendPointerSync(e);
e = Mo ...
在安裝android應用程序過程中,有的時候手機的內存不大,這個時候要求應用程序安裝到SD卡上.
如果要求程序直接安裝到SD卡上,可以使用installLoaction屬性.
在使用intallLocation的時候,要求指定的minSdkVersion 為8以上才可以,如果是在8以下使用這個屬性,系統是沒有辦法識別這個屬性.
使用installLocation屬性只要在manifest中做以下聲明,代碼如下:
android:versionCode = "1"
android:installLocation = "preferExternal&qu ...
Setting中某些項的設置:
1.Device administrators.
2.Accessibility SERVICES.
在設置Device administrators中用到的setActiveAdmin方法已經隱藏了,需要另行編繹.
public void setDevice(){
List<ResolveInfo> avail = this.getPackageManager().queryBroadcastReceivers(
new Intent(DeviceAdminReceiver.ACTION_DEVICE_ ...
android Setting中幾個設置項的設置,(USB StayAwake Locations):
直接貼代碼:
public void setUSBDebugger(){
int isUSBDebugging = -1;
try {
isUSBDebugging = Settings.Secure.getInt(getContentResolver(), Settings.Secure.ADB_ENABLED);
if(isUSBDebugging == 0){
Settings.Secure.putInt(getContentResolv ...
屏幕解鎖方式一:
這種方式是目前用的比較多的方式,使用KeyguardManager 的方式來解鎖,使用這種方式比較簡便一點,但是也有一點不好的地方,它用在程序中,當程序退出機器重啟後,這種效果就沒有了,達不到長久解鎖的效果.
KeyguardManager的應用:
KeyguardManager Manger = (KeyguardManager)getSystemService(KEYGUARD_SERVICE);
KeyguardLock mLock = Manager.newKeyguardLock("unlock");
mLock.disab ...
前面講過了,contentObserver能夠對一些數據和對setting中的設置進行監聽.
這次講一下對文件的監聽,使用fileobserver來對文件進行監聽.
當對某個文件夾下的文件,或者是具体的某個文件進行操作,像,增加,刪除,修改的時候通過使用fileobserver監聽來通知下一步要進行的操作.
首先要定義一個類繼承fileobserver,然後對onevent方法進行重寫.如下:
public class FileListener extends FileObserver {
public android.os.Handler handlera;
...