19 lines
447 B
Java
19 lines
447 B
Java
package com.android.server.status;
|
|
|
|
import android.content.Context;
|
|
import android.util.AttributeSet;
|
|
import android.util.Log;
|
|
import android.view.MotionEvent;
|
|
import android.widget.FrameLayout;
|
|
|
|
public class LatestItemView extends FrameLayout {
|
|
|
|
public LatestItemView(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
}
|
|
|
|
public boolean dispatchTouchEvent(MotionEvent ev) {
|
|
return onTouchEvent(ev);
|
|
}
|
|
}
|