我写了一些代码MainActivity.java
,它不起作用。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
this.activeBar = (ImageView)findViewById(R.id.active_bar);
this.activeBar.invalidate();
Matrix m = new Matrix();
int offset = (720 / 3 - 30) / 2;
//m.setTranslate(offset, 0);
//m.postTranslate(offset, 0);
m.setRotate(30);
Log.i("matrix", m.toString());
this.activeBar.setImageMatrix(m);
}
我想在应用程序首次启动时在当前选项卡上设置活动栏。所以我需要给这张照片一个偏移距离。当我开始我的演示时,没有任何变化。什么都没发生~