Micromax has again stared taking orders for Canvas HD A116. Consumers have to pay Rs 13,990 to book the smartphone.
I am writing android app where I have a canvas that can be zoomed in or out and translated in any direction. Now what I need to know is what is the position of user finger ON CANVAS, not on screen. The problem is that I have to write this app with API 9 compatibility.
What I have achieved is that without scaling everything works well.
Micromax will shortly be considering to open the booking again for Canvas HD A116.
I'm trying to rotate view with google map v2
I used some small lib which work fine with google map v1
the problem is that rotation does not have an effect.
code snippet:
@Override
protected void dispatchDraw(Canvas canvas) {
canvas.save(Canvas.MATRIX_SAVE_FLAG);
canvas.rotate(-mHeading, getWidth() * 0.5f, getHeight() * 0.5f);
mCanvas.delegate = canvas;
super.dispatchDraw(mCanva
I learned a lot of information from this forum and will definitely use/visit it regularly. My profession is canvas photography. And I do job on tocanvas.net. I like to create photo to canvas. If any body in this forum interested in canvas print let me know.
The A115Canvas 3D will feature a 3D user interface and lower hardware than the A116 Canvas HD. It may be priced below Rs 15,000.
Code:
@Override
public void onDraw(Canvas canvas) {
int myColor = 0;
p.setColor(Color.TRANSPARENT);
canvas.drawRect(0, 0, width, height, p);
if (currentPicture != null) {
p.setColor(Color.RED);
canvas.drawRect(0, 0, width, 200, p);
canvas.drawBitmap(currentPicture, new Rect(0, 0, width, height), new Rect(0, 0, width, height), p);
canvas.translate(tr
So you think Micromax Canvas HD A116 is the ultimate smartphone under Rs 15,000? Think again.
I've implemented some kind of a vector map using Android's SurfaceView and a Canvas.
Each element of the map is represented by a path that is being drawn in a for loop that draws each path onto the canvas.
Something like this -
void doDraw(Canvas canvas)
{
canvas.drawColor(Color.WHITE);
if (mMapModel == null)
return;
for (MapElement e : mMapModel.ge