我對Android開發非常陌生,我正在嘗試開發一款遊戲。在這個遊戲中,當按下按鈕時,我將需要Imageview左右移動。我目前使用的IDE是「Android Studio」。所以我做了研究,但沒有找到任何答案。我當前的代碼是如何移動圖片在Android開發中查看左右圖片
package com.example.turtle;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
public class MainActivity extends Activity {
Button left, right ;
ImageView turtle ;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
left = (Button) findViewById(R.id.bl);
right = (Button) findViewById(R.id.br);
turtle = (ImageView) findViewById(R.id.IVT);
left.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
所以是的,正如你可以看到我建立了一個OnClcikListener,但我不知道它下發生的事情。我聽說我可以減少一個位置,但我該怎麼做?像什麼是減少職位的代碼?由於
能你粘貼布局文件activity_main? –
http://stackoverflow.com/questions/16865118/simple-thread-issue-with-android-animation/16865270#comment24367783_16865270。使用處理程序移動圖像延遲 – Raghunandan
Plz檢查我的意見在這個線程: http://stackoverflow.com/questions/16955221/how-to-move-a-image-view-left-and- right-in-android-development-2/16955916#16955916 – Amrit