Tagged Questions
2
votes
3answers
44 views
Draw in Canvas by finger android
i new to Android programming and need to build a project for drawing on canvas by fingers , to get the touch event and motion event of my finger and draw .
Any one can advice me how to get start in ...
-1
votes
2answers
39 views
how to resolve overlapping on draw of multiple path
i want to draw multiple path with multiple paint stroke width on the canvas, but overlapping problem occurs on collision of path.
color overlapping when drawing multiple path
Above link contains ...
0
votes
2answers
52 views
Android drawing a path ON TOP of another path
So I am facing this weird problem in my drawing app.
I drew these lines from 1 to 8 from top to bottom and from left to right.
While I'm drawing the line, it shows as it's drawing Behind all the ...
1
vote
2answers
35 views
Draw dash line on a Canvas
How can i draw dash line on a canvas. I already tried this:
Paint dashPaint = new Paint();
dashPaint.setARGB(255, 0, 0, 0);
dashPaint.setStyle(Paint.Style.STROKE);
dashPaint.setPathEffect(new ...
0
votes
1answer
27 views
Android Activity MotionEvent coordinates to ImageView Canvas
I'd like to catch the coordinates of a touch event via 'onTouchEvent'. Now in my activity I have the following code to do that:
public boolean onTouchEvent(MotionEvent event) {
try {
if ...
0
votes
1answer
62 views
color overlapping when drawing multiple path
ArrayList
ArrayList<Pair<Path, Float>> foregroundPaths = new ArrayList<Pair<Path, Float>>();
Paint initilization
mPaint = new Paint();
mPaint.setAntiAlias(false);
...
0
votes
1answer
44 views
Draw circle on touch with own class
I want to place red circles where I touch an image and have a class that listens to the touch and sends the coordinates to an other class:
public class Report extends Fragment {
private Context ...
0
votes
1answer
45 views
Drawing multiple lines and remembering their thickness
It might be because I had a long day and it's quite late already, but I can't seem to figure out what I am doing wrong.
I just want to be able to draw lines at my finger's position with each line to ...
0
votes
1answer
30 views
Weird issue with android drawing. Some chars mistically disappear
I use Nexus 7 device
I create Paint with font size and type face;
My font is "Arial", size is 780;
My task is to write "sit" with different colours (s - in red, it - in blue)
for(int j = 0; j < ...
0
votes
0answers
24 views
Android layout visibility - strange behavior
I've got a weird problem here.
<LinearLayout
android:id="@+id/add_bar"
style="@style/SpacedElement"
android:layout_width="match_parent"
...
-2
votes
0answers
34 views
Is there any idea to set the stroke color when drawing in android
I am new in android drawing.
And I found that I can not have any way to draw the stroke color for a shape.
For example, I want to draw a circle with a different fill color and stroke color.
While I ...
0
votes
0answers
42 views
Android - drawline with hardware acceleration and antialiasing causes artifacts
I am working on an Android custom graph view that uses Canvas#drawLines and a paint object that has antialiasing turned on. My view has hardware acceleration turned on. Occasionally when I pinch zoom ...
0
votes
0answers
28 views
Zoom/Pan Custom View with annotation
I was able to implement the zooming and panning part from the link:
How can I get zoom functionality for images?
I change the pan/drag to at least use 2 touches on the screen, as I use the 1 touch ...
0
votes
0answers
55 views
How to draw a shape in Android
I am learning Android and trying to draw different shapes on the Canvas. At the moment I am stuck with an oval with different angles:
I've tried to use path.addRoundRect() method (the one which ...
3
votes
1answer
67 views
Problems with Transparency in Android
I have stumbled across a problem on some of the Android Tablets notably Samsung Galaxy Note, Galaxy Tab 10 and Nexus 10. The problem is after I keep the application running for a while and resume it ...
-1
votes
0answers
53 views
draw line through finger but not smooth
i have made paint application and i stuck with draw a smooth line . i have draw line but it is not smooth. i have search so many ways to draw smooth line but working properly.
my class is here
...
0
votes
1answer
92 views
How make round background selector for round image button?
I'm trying to make a background selector for round button as a ring around a button. Something like in AOS4.1 for tablettes for buttons Home/Back etc. So to achieve it I'm using the following ...
0
votes
0answers
35 views
Android drawing a matrix
Is it possible to draw a map (matrix-like structure) as an image on a particular layout (LinearLayout, etc.)? I am having a difficult time implementing such event.
For example I have this map input:
...
0
votes
2answers
70 views
what's the difference between Path.quadTo and Path.lineTo in the case of finger paint?
There is a FingerPaint demo in APIDemos of Android.
Below is the code when finger moving on the screen.
private void touch_move(float x, float y) {
float dx = Math.abs(x - mX);
float dy = ...
1
vote
2answers
134 views
How to save draw paint with custom view android?
I am using following code . and i am getting problem when saving images .i am able to save bitmap but when save bimap it saves also i erased paint also with black color
public class FingerPaint ...
1
vote
1answer
303 views
how to draw line on imageview along with finger in android
In my app i want to draw line on imageview along with finger.I want the output like the following:
In this screen fish is the imageview and red lines are drawing lines.So I followed the bellow link ...
0
votes
0answers
36 views
How to maintain Dialog's cache in Android 2.2.3
I've seen a lot of people asking for the opposite question, but I can't find a solution for this problem.
I have this dialog:
static Dialod sketchpad;
sketchpad = new Dialog (this);
...
1
vote
1answer
320 views
Draw text inside a filled rectangle using Canvas Android
How to draw a filled rectangle with specified bounds and inside that rectangle text to be drawn using Canvas Android ?? I tried
mPaint.setColor(Color.GREEN);
canvas.drawText(mText, x, y, mPaint);
...
1
vote
1answer
237 views
How to draw a path with variable stroke width
My code is basically from this example (http://corner.squareup.com/2010/07/smooth-signatures.html) and Google APIs (FingerPaint) but now I want to use the class VelocityTracker in order to change the ...
1
vote
1answer
95 views
Drawing on the android screen with a coordinate system
My question is probably going to be initially very confusing to read, so just bear with me. I'll start it off with a little preface for context:
Preface:
I have an app that will be using an array ...
1
vote
2answers
200 views
Set touch listeners on canvas drawings
Suppose i have drawn a bitmap image or simple circle on my canvas. How can i set OnTouchListener to check if my drawing has been touched? Since i will be drawing multiple circles on the canvas, I want ...
0
votes
0answers
68 views
Does TextureView respect alpha value if set from native?
I have a textureView buffer at JNI with following format and dimension:
Format: ARGB8888
Dimension: 640x480
I am trying to fill this buffer as follows:
int i4_col, i4_row;
typedef struct ...
1
vote
1answer
49 views
Best way to draw images in an activity
I need to draw a bitmap and yet change it when buttons are pressed on an activity class. I have tried using a View class but unfortunately I am having no luck. I thought this would be a simple enough ...
-1
votes
1answer
51 views
Android Drawing framework [closed]
I'm searching for a drawing framework/sdk, not an OpenGL sdk, that has build in: drawing lines, shapes, etc; adding background pictures; modifying pictures, erase, undo, etc.
(Something like Paint)
...
0
votes
0answers
204 views
Android Paint stroke width positioning
Given this code to draw a line:
Paint p;
p = new Paint(Paint.ANTI_ALIAS_FLAG);
p.setColor(android.graphics.Color.WHITE);
p.setStyle(Paint.Style.FILL);
p.setStrokeWidth(21);
...
1
vote
3answers
78 views
How to draw with a tap in Canvas?
This works ok if i move my finger, but if i just tap (From ACTION_DOWN to ACTION_UP without passing by the ACTION_MOVE) it won't draw anything. Any idea?
@Override
protected void onDraw(Canvas ...
1
vote
2answers
116 views
real intersection of 2 pathes in andoid ( new path )
I try to intersect 2 pathes in Android. This works fine in the first attempt. When I am zooming into the drawing ( canvas.scale() ) then the intersected shape is unprecise and ugly.
Does anyone know ...
0
votes
2answers
171 views
Android - Positioning Bitmaps on canvas varying per device. How to handle?
My situation involves drawing a background where other objects are contained within regions of the background, for the sake of bounding. I set up my surface view drawing to layout my bitmaps in the ...
0
votes
1answer
102 views
ShapeRenderer colors stop working when rendering images with SpriteBatch
I've made a game that uses ShapeRenderer for making colorized lines. This worked fine, but when I start to import images the colored lines suddenly became black. Worst of all: When I'm using a ...
1
vote
0answers
60 views
Draw lines on canvas in edit text but breaks on enter being pressed
I have drawn lines in edit text like notepad through draw canvas. But when I press lots of enters and it goes out of view, then the canvas is drawn but doesn't draw lines and white spaces comes in ...
0
votes
0answers
206 views
undo / redo action android drawing with imageView layout
sorry my english. I want to develop a drawable application and I need undo and redo functions. This are my codes. My xml is a linear layout only with imageview and buttons are imageview I don't know ...
1
vote
1answer
314 views
Create Layer List with Rounded Corners Programmatically
I am currently trying to convert the following XML to be created programmatically so that I can set the top corners and bottom corners as needed throughout my project. It is a simple Layer list that ...
2
votes
1answer
248 views
How to draw a grid of rectangle shaped objects?
I am new to Android and I am still searching for good resources to mine.
My question involves the best way to draw a grid of rectangle shaped objects to the screen. I need each object displayed in ...
1
vote
0answers
72 views
How to scale vector graphics properly?
I am learning how to use the vector drawing API and I have the following problem.
I am drawing lines and arcs on a canvas, and the View containing this canvas can be pinched zoomed. When zoomed in, ...
2
votes
1answer
111 views
A 320kb background image takes up roughly 30MB memory space
At the moment I am working on a application that is supposed to run on both tablet and phone.
The resolution of my main menu background image is 2000x1250, and it is resized depending on the canvas ...
1
vote
2answers
126 views
Store drawing canvas and restore it later
I've made a simple whiteboard on my Android app, where the user can draw something. I want to add an Undo feature so that he will be able to go back to his previous action.
On my Touch Start event, ...
0
votes
1answer
161 views
The method getDrawingCache() returns null depends on portrait or landscape mode
If I start my App in Landscape-Mode the getDrawingCache() returns the Bitmap I need, after changing the orientation to portrait mode (while app is running), getDrawingCache() returns null.
If I start ...
1
vote
2answers
263 views
Developing android games the right way [closed]
I'd like to point out that I'm fairly new to Android game development. I have tried few ways of programming games and found both working, but both of them had their own advantages. So I'd like to know ...
0
votes
1answer
57 views
Not rendering a transformed path
I'm not sure I have found a bug in Android or if there is a bug in my code. I thought it might be another (or new) manifestation of the hardware acceleration bug I've read about. I am running on ...
0
votes
1answer
47 views
Android: how to create drawing areas between controls
I have an app that needs to have certain defined areas between some controls where I can draw primitive shapes (mostly rectangles).
Is there a simple control that just defines an area that I can draw ...
0
votes
1answer
48 views
About the drawing speed
I want to draw the 2000 points which save to data object.
I use the following code:
Bitmap bitmap = Bitmap.createBitmap(2000,100,Config.ARGB_8888);
Canvas canvasTemp=new Canvas(bitmap);
Paint ...
1
vote
1answer
82 views
getChildDrawingOrder called/used erratically?
I am creating an isometric map with simple tiles, and I’ve extended RelativeLayout to create a layout that holds these tiles. Really, just using a RelativeLayout as-is worked fine as long as my ...
0
votes
1answer
118 views
Draw on canvas, smoothly scale and draw something more
I have a trouble with scaling bitmap and then draw on it in Android. From the beginning, I have a custom view, with onDraw method, I'm drawing something on it's canvas. Now, I want to scale that ...
0
votes
0answers
70 views
Convert java.awt.Shape to Android
I'm working on a program that is trying to create an Android prototype that emulates our current collaborative system.
We have a necessity to use a standard symbology between the two systems. Our ...
0
votes
3answers
122 views
How to set Position of a textview on the customview of android
I am using below code to set text on the canvas..But now i want to know how to set the position of the text at the bottom of the layout..
LinearLayout layout = new LinearLayout(getContext());
...

