android 自定义指南针,如何在android中制作自定义指南针视图

上述代码已被弃用.更新的代码可用

here

XML布局activty_main

android:layout_width="match_parent"

android:layout_height="match_parent"

android:background="#fff" >

android:id="@+id/tvHeading"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_centerHorizontal="true"

android:layout_marginBottom="40dp"

android:layout_marginTop="20dp"

android:text="Heading: 0.0" />

android:id="@+id/imageViewCompass"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_below="@+id/tvHeading"

android:layout_centerHorizontal="true"

android:src="@drawable/img_compass" />

主要活动

public class MainActivity extends Activity implements SensorEventListener {

// define the display assembly compass picture

private ImageView image;

// record the compass picture angle turned

private float currentDegree = 0f;

// device sensor manager

private SensorManager mSensorManager;

TextView tvHeading;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

//

image = (ImageView) findViewById(R.id.main_iv);

// TextView that will tell the user what degree is he heading

tvHeading = (TextView) findViewById(R.id.tvHeading);

// initialize your android device sensor capabilities

mSensorManager = (SensorManager) getSystemService(SENSOR_SERVICE);

}

@Override

protected void onResume() {

super.onResume();

// for the system's orientation sensor registered listeners

mSensorManager.registerListener(this,mSensorManager.getDefaultSensor(Sensor.TYPE_ORIENTATION),SensorManager.SENSOR_DELAY_GAME);

}

@Override

protected void onPause() {

super.onPause();

// to stop the listener and save battery

mSensorManager.unregisterListener(this);

}

@Override

public void onSensorChanged(SensorEvent event) {

// get the angle around the z-axis rotated

float degree = Math.round(event.values[0]);

tvHeading.setText("Heading: " + Float.toString(degree) + " degrees");

// create a rotation animation (reverse turn degree degrees)

RotateAnimation ra = new RotateAnimation(

currentDegree,-degree,Animation.RELATIVE_TO_SELF,0.5f,0.5f);

// how long the animation will take place

ra.setDuration(210);

// set the animation after the end of the reservation status

ra.setFillAfter(true);

// Start the animation

image.startAnimation(ra);

currentDegree = -degree;

}

@Override

public void onAccuracyChanged(Sensor sensor,int accuracy) {

// not in use

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值