3
votes
1answer
77 views

view with Zoom and draw line on canvas in Android

i am working on canvas.As shown below view class use for zoom and draw line.On click of zoom button pinch zoom working fine.but when i click on paint button i pass one Boolean as true which draw line ...
0
votes
1answer
24 views

SurfaceView error

@Override protected void onDraw(Canvas canvas){ super.onDraw(canvas); Paint paint = new Paint(); canvas.drawPaint(paint); ...
2
votes
0answers
31 views

Using 2 different colors on the same paint, for the same canvas cause flickering

This is the code i'm using, it is running the heavy part on the Background, and it draws a growing circle, and while it is growing, the text that is inside the circle fades out, the problem is that ...
0
votes
0answers
45 views

Android - Alpha animation on canvas?

I have gone through this link but it is not helpful at all. I am stuck in same sort of situation. I drew two lines on my canvas, grey and red, red one tells the user that on which screen he or she is ...
1
vote
1answer
104 views

Android - Fill color below the line chart

I am building a line chart for one of our applications. The line part in the chart is working fine but now I have to fill the area below the line with a color, something like this image below. I am ...
0
votes
1answer
118 views

Android canvas - Draw a hole

Is it possible to realize the following picture in Android with canvas? I want to have a hole and not only a Circle over the red layer which is yellow colored. I tried this (and failed) with the ...
-1
votes
1answer
45 views

Add eraser tool after draw paint

I have paint app. When i click button it launch paint view than user can paint. After i come back then click button the paintview won't reset. How can i reset a view in button click after draw pain. ...
0
votes
1answer
74 views

Normal Line vs Dash Line

You'll see in the picture that, on the left is a normal line and on right is a dashed line. After I selected the dashed line, the normal line was transformed into a dashed line. If I try to paint with ...
0
votes
0answers
69 views

Drawing & creating the canvas on the android screen

The code will run through an array. If the character 'X' is seen in the array, it will drawRect at the respective spot on the screen. The problem is that the color isn't actually being drawn on the ...
0
votes
0answers
12 views

How to fill color into close path. It was draw before

I am building an app like Paint in window, After I draw a Circle, I want fill color into it. I don't know how to do it.Can you help me ?
1
vote
0answers
27 views

How to prevent colors mixing on Android

I have two Paint-objects. First(1) I use to draw semi-tranpsarent background, second(2) - for painting with finger. Everything is OK except one thing - color of (2) becomes darker when I finish ...
0
votes
2answers
89 views

Android canvas.drawPoint ignores Paint.Cap round

I've been working on this for a while. This code: Log.i(TAG, "stroke style: " + paint.getStyle()); Log.i(TAG, "stroke cap: " + paint.getStrokeCap()); canvas.drawPoint(p.x, p.y, paint); prints ...
0
votes
1answer
178 views

draw square 3x3 cm in Android

I need to draw an exact square 3x3 cm on the screen, you need the exact dimensions in any type of screen as design work. The result in a Samsung Ace is 2.8 cm, the result is not exact. Java... ...
0
votes
2answers
221 views

android drawing apps line once change colour all the previously lines drawn are painted with new colour

I am making a drawing app and the following code works fine, except that when i would like to change the colour of the paintline, all the previous line drawn will be changed to the new color: ...
1
vote
0answers
206 views

Eraser with PorterDuff.Mode.CLEAR always draws a black line, where i want to delete

Can i make it draw the path, where I move my finger to delete with a transparent line, or not draw at all? This is how i instantiate my eraser: OnClickListener eraseListener = new OnClickListener() ...
1
vote
1answer
169 views

Draw Multiple Paths on Canvas Android

I have one class named MyView that extends View..In my options menu i have four types of color. What i want is when i select green and draw path on canvas it should draw green path and when i select ...
0
votes
2answers
94 views

Sending text from fragment to custom view where I want to use canvas.drawText [duplicate]

I am new to Android and want to pass some text from a fragment to a custom view. Inside the custom view I want to use canvas.drawText to position the string. The reason I want to use canvas.drawText ...
0
votes
1answer
75 views

How to sketch or draw a shaded paintings in Android 2.2?

I have worked on Paint in my app. It works fine normally. What i need is, If User wish to draw something like shaded paintings or shadow diagrams then if he/she clicks the shaded button then they ...
0
votes
1answer
137 views

erasing from canvas, last canvas.drawPath()

this is the code i made: private void touch_start(float x, float y) { mPath.reset(); mPath.moveTo(x, y); undoPath = new Path(); undoPath.moveTo(x, y); canvas.drawPoint(x, y, ...
0
votes
1answer
135 views

How to draw or write a text like MS-Paint in android using onTouch Event?

Using pencil Hi all, I have created panel with collection of different colors, pencil, eraser and different shapes similar to MS-Paint. I could be able to draw or write on a screen using Touch ...
0
votes
0answers
72 views

How would one use Tk to create a paint-like program with oval, rectangle etc buttons? How to save it (2 Parts)

I wasn't able to get an answer to a question I asked pertaining to a paint-like application, so I'm going to try to understand this more generally. Here is my original question: Tk Canvas Objects ...
0
votes
0answers
77 views

android - how to validate drawing

In my app, the customer has to sign at the end of the process. Below code is how I manage to make it work. DrawView public class DrawView extends View { private static final float STROKE_WIDTH ...
1
vote
0answers
203 views

HTML5 Canvas Soft Brush

What are the different methods of creating a "soft brush" effect when drawing on an HTML5 canvas? Speed and efficiency is important so if anyone has any benchmarks on the different methods, that would ...
0
votes
0answers
45 views

Creating Application Like Clean It

I am trying to create an application that works in a similar way to clean it. The clean it app works by displaying a misted image over the screen, when the user presses on the screen, based on the ...
0
votes
1answer
58 views

Calculating the dimensions of a rendered string of text (before rendering it)

I want to align a String drawn by a canvas perfectly in the middle. So if I have code like so Paint p = new Paint(); Canvas c = holder.lockCanvas(); String centered_text = "Hello World"; and then ...
0
votes
1answer
202 views

Android Canvas Paint Arc Border

I am drawing an arc with a border by painting two arcs, one over the other the first being slightly larger. The issue is with "slightly larger" this can end up with the border not always being even ...
0
votes
2answers
316 views

Drawing line less than one pixel thick requires anti-aliasing in Android 4.2

I'm trying to draw a very thin line (less than one pixel thick) in android. I'm using Paint blackThin = new Paint(); blackThin.setStrokeWidth(0.1f); blackThin.setColor(Color.BLACK); to initialize ...
0
votes
2answers
742 views

paint canvas android

I'm developing in android, and I have to do a Paint for android. I'm using the code below and, when I execute the code, the draw works, but, it seems that there are 2 surfaces to paint, and when ...
0
votes
2answers
104 views

Applying the finger paint to my own view

I have a custom view to which I want to apply the finger paint. How do I achieve this? My own view is 210x170 pixels into which I wanted to finger paint. I am really very puzzled over how to do ...
-1
votes
1answer
134 views

Set video as canvas background in paint activity

I need to put a video as the background of my canvas. And when I pause it, to be able to paint on that frame. Is this possible? I was thinking first of playing a video, and attaching a pause and ...
1
vote
2answers
113 views

no paint in android

I am writing mini app for signature, user use finger for paint. I draw in function onPaint but nothing. I don't understand, I debugged but I didn't fix it. I see, if I draw in function onCreate is ...
0
votes
1answer
88 views

Android - How to animate a single element of Canvas instead of whole canvas or view?

I have a custom view with two lines that had been drawn using drawLine function. I want to animate the alpha of second line but whenever i try to animate it whole canvas is animating. I try to find ...
0
votes
1answer
213 views

Java Graphics Full Screen Mode not Registering Keyboard Input

I'm trying to write a full screen application that takes keyboard inputs. I've tried adding keylisteners to my JFrame and now to a canvas within the JFrame and setting them both as focusable but it ...
0
votes
2answers
2k views

How to set paint.setColor(int color)

I have use custume View that have Paint and Canvas to draw object, my question is how to set int myColor = com.example.test.R.color.white; paint.setColor(myColor); from my /res/valuse/color.xml ...
2
votes
3answers
232 views

Android: How can get paint on mapviews?

I am getting the MapView of current location by passing longitude and latitude parameters correctly. But i want to draw paint just like free hand (i.e names or lines and so..on) on that MapView image. ...
0
votes
1answer
583 views

Android - Glow Effects on Canvas

i want to make an Android app and draw on canvas with a glow effects for the circles, squares etc that i draw on it. Much like the application Art of Glow. This is what i have achieved by now and ...
2
votes
2answers
440 views

New line when painting a text in a image

I got an app that the user insert a text, and when he clicks on a button, it generates a new image with that text in a predeterminated image and saves it on the phone. But sometimes that text is too ...
0
votes
1answer
101 views

Placing TextView on different positions on the screen

I got a list of images, and when a person clicks on an item it goes to an activity and set an ImageView with that image. What I want to do is: on each image set a position to the TextView. If the ...
0
votes
0answers
104 views

Paint not overlapping

I'm working on an app on android that will paint using your fingers (app like DrawSomething). I can't overlap the paint with opacity. And when I change the color, all of the paint will have the same ...
0
votes
2answers
632 views

Stroke cap for custom PathEffect

I'm implementing custom path effect for route on top of MapView and I came up with the problem how to make my beginning and ending of the path rounded (like Paint.setStrokeCap(Cap.ROUND) does). See ...
0
votes
2answers
96 views

is it possible to designate a text rectangle with Paint?

I'm drawing text into a Canvas and want to assign a rectangle so that the text breaks and goes to the next line if it reaches the right hand boundary. There's an "align" property I can set, so ...
0
votes
0answers
211 views

Undo and Redo path in canvas

I have seen many examples of how to implement undo and redo feature in a drawn path of a canvas but i can´t make it works, here is my code: Paint activity: public class Pintar extends View { private ...
0
votes
1answer
167 views

trying to debug undo functionality in canvas paint program

here is my page http://www.dev.1over0.com/canvas/canvas_web.html I’m having issues with the undo functionality – I think I’m getting close but here’s the issue First I’ll tell you the basics of the ...
2
votes
1answer
215 views

Why is drawLine offset by 1 pixel?

This is probably an easy one for Android experts. I am trying to draw into a Bitmap via a Canvas. I want exact colors, no anti-aliasing, and lines located at exact absolute coordinates within the ...
0
votes
1answer
228 views

How to get a canvas to constantly redraw itself?

I have a canvas in HTML5 and am making a networked painting application. However, when other clients receive the drawing code, it is not drawn on to the canvas until they mouse over it. Is there any ...
0
votes
1answer
525 views

Android Canvas Paint Signature Application

I am working on android paint signature application where it has the flexibility to clear the paint and save the canvas as bitmap image. I am facing an issue in this app, whenever i want to save the ...
0
votes
1answer
158 views

Canvas oddness in painting app

I was looking at this canvas painting app as a base template but was hopeful some could help alleviate a problem when you simply click the mouse on the canvas. You appear to get a line instead of a ...
0
votes
2answers
316 views

Android: Custom masking 2 bitmaps layered one above the other

easy now. What I want eventually: I want to have 2 bitmaps overlayed on a view. Same bitmaps with the one above have higher brightness than the below one. Now when the user strokes(with touch ...
1
vote
2answers
262 views

Java paint() Only Called Once From paintAll()

I have the following code being called: while(true){ view.onTick(); trySleep(55); } The onTick() method is described as such: public void onTick() { ...
2
votes
3answers
2k views

Android: How to fill color to the specific part of the Image only?

I have Image Like this: Now, i want to fill the color to the Specific part of that image. as like If i select color blue and if i touch on Cap then the cap should be fill with the color Blue. Same ...

1 2