我有一个应用程序,我在ImageView中显示一个图像,该图像位于从活动中看到的片段中。我想通过绘制以触摸事件坐标为中心的小点状圆来响应ImageView上的触摸事件。
经过一些谷歌搜索和阅读后,我在片段类中实现了以下代码:
public class ImageViewFragment extends Fragment implements View.OnTouchListener
{
private ImageView mImageView;
private Bitmap mBitmap;
private List<Pair<Integer, Integer>> mScribblePointsCoords;
private Paint mPaint;
public interface OnScribbleUpdate
{
void onNewScribblePoint(List<Pair<Integer, Integer>> coordinates);
}
@Override
public boolean onTouch(View v, MotionEvent event)
{
v.onTouchEvent(event);
return true;
}
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
mScribblePointsCoords = new ArrayList<>();
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
View view = inflater.inflate(R.layout.image_view_fragment, container, false);
view.setOnTouchListener(new View.OnTouchListener()
{
@Override
public boolean onTouch(View v, MotionEvent event)
{
if(event.getAction() == MotionEvent.ACTION_DOWN)
{
int x = (int) event.getX();
int y = (int) event.getY();
mScribblePointsCoords.add(new Pair<>(x, y));
Bitmap tempBitmap = mBitmap.copy(mBitmap.getConfig(), true);
Canvas canvas = new Canvas(tempBitmap);
canvas.drawCircle(x, y, R.dimen.default_scribble_point_radius, mPaint);
mImageView.setImageDrawable(new BitmapDrawable(getResources(), tempBitmap));
mBitmap = tempBitmap;
return true;
}
return false;
}
});
mPaint = new Paint();
mPaint.setColor(Color.BLUE);
mImageView = view.findViewById(R.id.new_photo_view);
mImageView.setImageBitmap(mBitmap);
return view;
}
@Override
public void onResume()
{
super.onResume();
mImageView.setImageBitmap(mBitmap);
}
public void setImage(Bitmap bmp)
{
mBitmap = bmp.copy(bmp.getConfig(), false);
if(this.isResumed())
{
mImageView.setImageBitmap(mBitmap);
}
}
public void clearScribble()
{
mScribblePointsCoords.clear();
}
public List<Pair<Integer, Integer>> getScribbleCoordinates()
{
return mScribblePointsCoords;
}
}
修改 image_view_fragment.xml
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="cofproject.tau.android.cof.ImageViewFragment">
<ImageView
android:id="@+id/new_photo_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="visible"
app:srcCompat="@android:color/background_dark"/>
</FrameLayout>
编辑结束
现在,问题在于我将整个ImageView颜色变为纯蓝色(我为R.dimen.default_scribble_point_radius尝试了不同的半径尺寸,例如5,0.5和0.1但无效)。
在:
后:
我有三个问题:
我做错了什么,怎样才能得到一个简单的点状圆圈,而不是让整个ImageView变蓝。
我认为我的onTouch(View v, MotionEvent event)
方法非常低效,因为它必须重新绘制每个点的位图,我想知道是否有一种有效的方法来实现同样的事情。
如果使用绘图将要进行的某些部分的transperent视图,除了我的麻烦,如果是这样,怎么能实现这样的事情?
非常感谢您的意见和指导。
答案 0 :(得分:1)
你应该选择一个透明的View
,它位于ImageView
的正上方(z方向)。造成这种情况的主要原因是:在绘制小蓝圈时,ImageView
是View
的一种相当重的类型。
因此,您创建了一个自定义View
,它将执行绘图并将其放在ImageView
之上。我通过将它们放在FrameLayout
:
<FrameLayout
android:layout_width="200dp"
android:layout_height="200dp">
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<com.example.paintingcircles.DottedView
android:id="@+id/dottedView"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</FrameLayout>
我按照您的设置使用了匿名OnTouchListener
但当然您也可以DottedView
覆盖onTouchEvent()
。
在onCreate()
:
final DottedView dottedView = (DottedView) findViewById(R.id.dottedView);
dottedView.setOnTouchListener(new View.OnTouchListener()
{
@Override
public boolean onTouch(View view, MotionEvent event)
{
if(event.getAction() == MotionEvent.ACTION_DOWN)
{
int x = (int) event.getX();
int y = (int) event.getY();
dottedView.addScribblePointsCoords(new Pair<>(x, y));
dottedView.invalidate();
return true;
}
return false;
}
});
DottedView.java:
public class DottedView extends View
{
private ArrayList<Pair<Integer, Integer>> mScribblePointsCoords = new ArrayList<>();
private int radius = 5;
private Paint mPaint;
public DottedView(Context context)
{
super(context);
init();
}
public DottedView(Context context, @Nullable AttributeSet attrs)
{
super(context, attrs);
init();
}
public DottedView(Context context, @Nullable AttributeSet attrs, int defStyleAttr)
{
super(context, attrs, defStyleAttr);
init();
}
@Override
protected void onDraw(Canvas canvas)
{
super.onDraw(canvas);
for (Pair<Integer, Integer> pair: mScribblePointsCoords){
canvas.drawCircle(pair.first, pair.second, radius, mPaint);
}
}
public void addScribblePointsCoords(Pair pair){
mScribblePointsCoords.add(pair);
}
private void init()
{
mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
mPaint.setColor(Color.BLUE);
}
}