我一直在使用Snake示例代码,我正在尝试修改这个以便进行培训,并希望增加对Android工作原理的理解。
到目前为止,我已经添加了两个按钮+相应的setOnClickListener代码,如下所示。
snake_layout.xml :
<Button
android:layout_height="39px"
android:layout_width="55px"
android:layout_marginLeft="15px"
android:text="Left"
android:id="@+id/left_button" />
<Button
android:layout_height="39px"
android:layout_width="55px"
android:layout_marginLeft="240px"
android:text="Right"
android:id="@+id/right_button" />
和 Snake.java :
.
.
.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// No Title bar
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.snake_layout);
final Button leftButton = (Button) findViewById(R.id.left_button);
leftButton.setOnClickListener(new Button.OnClickListener() {
public void onClick(View v)
{
//perform action
}
});
final Button rightButton = (Button) findViewById(R.id.right_button);
rightButton.setOnClickListener(new Button.OnClickListener() {
public void onClick(View v)
{
//perform action
}
});
.
.
.
当我尝试一种简单的方法时,两个按钮都显示在它们应该的位置并工作,例如“ finish()”。
现在,我想要做的是让这些按钮触发下面的代码, 在 SnakeView.java :
if (keyCode == KeyEvent.KEYCODE_DPAD_LEFT) {
if (mDirection != EAST) {
mNextDirection = WEST;
}
return (true);
}
if (keyCode == KeyEvent.KEYCODE_DPAD_RIGHT) {
if (mDirection != WEST) {
mNextDirection = EAST;
}
return (true);
}
要清楚,我需要让我的自定义屏幕按钮执行与当前代码中的“KEYCODE_DPAD_RIGHT”和“KEYCODE_DPAD_LEFT”相同的工作。 我的Xperia X10i没有配备DPAD,这是它的一部分;-P
我真的很欣赏正确方向的一些指示。你可能已经猜到了我对这个很新......
先谢谢你们
答案 0 :(得分:2)
点击此处:
Throwing/Simulating KeyStrokes programatically
基本逻辑隐藏在后面:
private void doInjectKeyEvent(KeyEvent kEvent) {
try {
/* Inject the KeyEvent to the Window-Manager. */
windowManager.injectKeyEvent(kEvent.isDown(), kEvent.getKeyCode(),
kEvent.getRepeatCount(), kEvent.getDownTime(),
kEvent.getEventTime(), true);
} catch (DeadObjectException e) {
e.printStackTrace();
}
}
答案 1 :(得分:2)
在// perform action
方法中代替onClick
,从现有代码中复制相应的正文(例如if (mDirection != EAST) mNextDirection = WEST;
)。
另外,以像素为单位指定按钮尺寸被认为是不好的做法。对于打算在可能具有非常不同的像素密度和屏幕尺寸的设备上运行的代码,这不能很好地工作。最好让按钮根据它们包含的内容自行调整大小。
答案 2 :(得分:0)
您需要在SnakeView.java中创建一个允许您更改mNextDirection的函数。
public void setMNextDirection(int direction){
//check if the direction is recognised
if (direction == EAST || direction == WEST ) {
mNextDirection = direction;
}
之后你可以使用:
mSnakeView.setMNextDirection(mSnakeView.WEST);