我的问题是这样的:当我点击地图的特定点以显示其他图像时,我有一个图像。我正在使用此代码
private void setImageClickListener() {
ImageView map_image=(ImageView)findViewById(R.id.map_icon);
map_image.setOnTouchListener(new ImageView.OnTouchListener() {
//OnTouchListener listener = new OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
if(!(event.getAction() == MotionEvent.ACTION_DOWN))
return false; //If the touch event was not putting the finger down on the screen, return false(Actions may be move, up, and so on)
final float x = event.getX();
final float y = event.getY();
System.out.println("Coordinates of button pressed are: X is %d"+x+" and Y is %d"+ y);
if(x>260 && x<390 && y>270 && y< 290)
DoFirst();
//... and so on...
//In the end, you must return a boolean saying whether you "consumed" the event - if you handled the event or not.
return true;
}
});
我的xml文件是:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff"
>
<ImageView
android:id="@+id/map_icon"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:scaleType="fitXY"
android:src="@drawable/home_map" />
问题在于,当我在模拟器上运行时,坐标与在不同手机上运行坐标不同。我怎样才能在多个屏幕上运行?我认为使用event.getX坐标是指图像坐标而不是屏幕坐标。所以我想要的是与屏幕无关的范围。
任何帮助?
答案 0 :(得分:0)
我建议您使用自定义视图以完全控制ImageView。然后在onSizeChange()中你会知道移动设备的确切大小...