У меня есть пользовательский вид в HorizontalScrollView, обернутый в ScrollView, и я хочу воздействовать на ACTION_UP в onTouchEvent, когда точка касания была перемещена, но прокрутка не была выполнена, т.е. когда представление меньше или равно размеру окна , Одно касание без движения дает ACTION_UP, как и должно быть.
При запуске (следующего) кода под 2.1 я получаю ACTION_UP, как и ожидалось. При запуске того же кода на 2.2 я не получаю ACTION_UP (я тестировал SDK 2.1 и 2.2 на эмуляторе 2.2).
Я случайно использовал «ошибку, которая работает» в версии 2.1 и был исправлен для 2.2, или это новая ошибка? Есть ли обходной путь?
См. Следующий logcat:
2.1
I/CustomActivityView( 225): ACTION_DOWN at 307.000000,
I/CustomActivityView( 225): ACTION_MOVE at 297.000000,
I/CustomActivityView( 225): ACTION_MOVE at 292.000000,
I/CustomActivityView( 225): ACTION_MOVE at 290.000000,
I/CustomActivityView( 225): ACTION_MOVE at 289.000000,
I/CustomActivityView( 225): ACTION_MOVE at 286.000000,
I/CustomActivityView( 225): ACTION_UP at 286.000000,
2.2
/CustomActivityView( 279): ACTION_DOWN at 249.000000,
/CustomActivityView( 279): ACTION_MOVE at 249.000000,
/CustomActivityView( 279): ACTION_MOVE at 249.000000,
/CustomActivityView( 279): ACTION_MOVE at 249.000000,
/CustomActivityView( 279): ACTION_DOWN at 198.000000,
/CustomActivityView( 279): ACTION_MOVE at 199.000000,
/CustomActivityView( 279): ACTION_MOVE at 207.000000,
/CustomActivityView( 279): ACTION_MOVE at 214.000000,
/CustomActivityView( 279): ACTION_MOVE at 221.000000,
main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="#ffdddddd"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ScrollView android:id="@+id/ScrollView" android:layout_width="wrap_content" android:layout_height="wrap_content">
<HorizontalScrollView android:id="@+id/HorizontalScrollView" android:layout_width="wrap_content" android:layout_height="wrap_content">
<com.example.eventconsumption.CustomActivityView
android:background="#ffaaaaff"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/CustomActivityView"
/>
</HorizontalScrollView>
</ScrollView>
</LinearLayout>
Вид:
package com.example.eventconsumption;
import android.content.Context;
import android.graphics.Canvas;
import android.util.AttributeSet;
import android.util.Log;
import android.view.Display;
import android.view.MotionEvent;
import android.view.View;
import android.view.WindowManager;
public class CustomActivityView extends View {
private static final String TAG = "CustomActivityView";
private int mSetViewWidth = -1;
private int mSetViewHeight = -1;
private int mScreenWidth;
private int mScreenHeight;
public CustomActivityView(Context context) {
super(context);
init(context);
}
public CustomActivityView(Context context, AttributeSet attrs) {
super(context, attrs);
init(context);
}
public CustomActivityView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init(context);
}
private void init(Context context) {
WindowManager windowManager = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
Display display = windowManager.getDefaultDisplay();
mScreenWidth = display.getWidth();
mScreenHeight = display.getHeight();
setWidthHeight(mScreenWidth / 2, mScreenHeight * 2);
//setWidthHeight(mScreenWidth * 2, mScreenHeight / 2);
}
private void setWidthHeight(int w, int h) {
mSetViewWidth = w;
mSetViewHeight = h;
}
@Override
public void draw(Canvas canvas) {
super.draw(canvas);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
if (mSetViewWidth != -1 && mSetViewHeight != -1) {
setMeasuredDimension(mSetViewWidth, mSetViewHeight);
} else {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
}
@Override
public boolean onTouchEvent(MotionEvent event) {
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
Log.i(TAG, String.format("ACTION_DOWN at %f, %f", event.getX(), event.getY()));
return true;
case MotionEvent.ACTION_MOVE:
Log.i(TAG, String.format("ACTION_MOVE at %f, %f", event.getX(), event.getY()));
break;
case MotionEvent.ACTION_UP:
Log.i(TAG, String.format("ACTION_UP at %f, %f", event.getX(), event.getY()));
return true;
}
return super.onTouchEvent(event);
}
}
Активность:
package com.example.eventconsumption;
import android.app.Activity;
import android.os.Bundle;
public class EventConsumptionTestActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}