android 搖一搖 代碼 真實可用

來源:互聯網
上載者:User

[java]
核心介面代碼: 
package com.hyxf.main; 
import android.content.Context; 
import android.hardware.Sensor; 
import android.hardware.SensorEvent; 
import android.hardware.SensorEventListener; 
import android.hardware.SensorManager; 
import android.util.Log; 
 
public class ShakeListener implements SensorEventListener { 
 String TAG = "ShakeListener"; 
 // 速度閾值,當搖晃速度達到這值後產生作用  
 private static final int SPEED_SHRESHOLD = 3000; 
 // 兩次檢測的時間間隔  
 private static final int UPTATE_INTERVAL_TIME = 70; 
 // 感應器管理器  
 private SensorManager sensorManager; 
 // 感應器  
 private Sensor sensor; 
 // 重力感應監聽器  
 private OnShakeListener onShakeListener; 
 // 上下文  
 private Context mContext; 
 // 手機上一個位置時重力感應座標  
 private float lastX; 
 private float lastY; 
 private float lastZ; 
 // 上次檢測時間  
 private long lastUpdateTime; 
 // 構造器  
 public ShakeListener(Context c) { 
  // 獲得監聽對象  
  mContext = c; 
  start(); 
 } 
 // 開始  
 public void start() { 
  // 獲得感應器管理器  
  sensorManager = (SensorManager) mContext 
  .getSystemService(Context.SENSOR_SERVICE); 
  if (sensorManager != null) { 
   // 獲得重力感應器  
   sensor = sensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER); 
  } 
  // 註冊  
  if (sensor != null) { 
   sensorManager.registerListener(this, sensor, 
   SensorManager.SENSOR_DELAY_GAME); 
  } 
 } 
 // 停止檢測  
 public void stop() { 
  sensorManager.unregisterListener(this); 
 } 
 // 設定重力感應監聽器  
 public void setOnShakeListener(OnShakeListener listener) { 
  onShakeListener = listener; 
 } 
 // 重力感應器感應獲得變化資料  
 public void onSensorChanged(SensorEvent event) { 
  // 現在檢測時間  
  long currentUpdateTime = System.currentTimeMillis(); 
  // 兩次檢測的時間間隔  
  long timeInterval = currentUpdateTime - lastUpdateTime; 
  // 判斷是否達到了檢測時間間隔  
  if (timeInterval < UPTATE_INTERVAL_TIME) 
   return; 
  // 現在的時間變成last時間  
  lastUpdateTime = currentUpdateTime; 
  // 獲得x,y,z座標  
  float x = event.values[0]; 
  float y = event.values[1]; 
  float z = event.values[2]; 
  // 獲得x,y,z的變化值  
  float deltaX = x - lastX; 
  float deltaY = y - lastY; 
  float deltaZ = z - lastZ; 
  // 將現在的座標變成last座標  
  lastX = x; 
  lastY = y; 
  lastZ = z; 
  double speed = Math.sqrt(deltaX * deltaX + deltaY * deltaY + deltaZ 
  * deltaZ) 
  / timeInterval * 10000; 
  Log.v(TAG, "===========log==================="); 
  // 達到速度閥值,發出提示  
  if (speed >= SPEED_SHRESHOLD) { 
   onShakeListener.onShake(); 
  } 
 } 
 public void onAccuracyChanged(Sensor sensor, int accuracy) { 
 } 
 // 搖晃監聽介面  
 public interface OnShakeListener { 
  public void onShake(); 
 } 

應用代碼: 
public class yaoAcitivity extends Activity { 
 ShakeListener mShakeListener = null; 
 private TextView tv; 
 private ImageView iv; 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  // TODO Auto-generated method stub  
  super.onCreate(savedInstanceState); 
  this.setContentView(R.layout.main); 
   
  tv=(TextView)this.findViewById(R.id.textView1); 
  iv=(ImageView)this.findViewById(R.id.imageView1); 
   
  mShakeListener = new ShakeListener(this); 
  mShakeListener.setOnShakeListener(new shakeLitener()); 
 } 
 private class shakeLitener implements OnShakeListener{ 
  @Override 
  public void onShake() { 
   // TODO Auto-generated method stub  
   tv.setText("搖一搖成功啦!"); 
   iv.setImageResource(R.drawable.attitude_laugh); 
   mShakeListener.stop(); 
  } 
   
 } 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.