About

My name is Sandip Jadhav I am working in Android Mobile Application Development from 2009. After studying many blogs, reading books on Android finally I decided to have my own blog to share knowledge I have.

As this is my attempt & I am not an expert I may do some mistake also but I really need all the reader to point out if they found. This is the way to share a knowledge & helping each other to move forward.

Thank You

profile for Sandip Jadhav at Stack Overflow, Q&A for professional and enthusiast programmers

16 thoughts on “About

  1. Good article i gone through it and i got how to develop splash screen in android.
    Waiting for further things….

    Thank you and best luck

  2. Thanks …….

    But i have a problem that i think you can solve it .
    My Problem is related to Surface view.
    Am developing drawing application , in which i have all work properly but when am touche the screen then drawing not showing and when releasing then it shows.

    my small code is blow
    public boolean onTouch(View view, MotionEvent motionEvent) {
    if(motionEvent.getAction() == MotionEvent.ACTION_DOWN){

    currentDrawingPath = new DrawingPath();
    currentDrawingPath.paint = currentPaint;
    currentDrawingPath.path = new Path();
    currentBrush.mouseDown(currentDrawingPath.path, motionEvent.getX(), motionEvent.getY());

    }else if(motionEvent.getAction() == MotionEvent.ACTION_MOVE){

    currentBrush.mouseMove( currentDrawingPath.path, motionEvent.getX(), motionEvent.getY() );

    currentDrawingPath.paint = currentPaint;
    // drawingSurface.addDrawingPath(currentDrawingPath);

    }else if(motionEvent.getAction() == MotionEvent.ACTION_UP){
    currentBrush.mouseUp( currentDrawingPath.path, motionEvent.getX(), motionEvent.getY() );
    drawingSurface.addDrawingPath(currentDrawingPath);

    undoBtn.setEnabled(true);
    redoBtn.setEnabled(true);
    }

    return true;
    }

    and in this code when am adding the drawingSurface.addDrawingPath(currentDrawingPath); on MOVING then drawing has been seen but slow and undo/redo also have a problem.

    So please solve my problem.
    And aam also share this problem on stack over flow but not solved still.

  3. Hello sir.. I have query.. How can i implement auto complete search in android to fetch data stored in phpmyadmin database…..??? Please help me in this…
    I do a google lot regarding this but all are telling for static data…

    Please send me data regarding this on shikhasinghal735@gmail.com
    thanku…

  4. Hello,

    I have to do an app about uploading photo to picasa. but I could not do it. Could you please help me abut that?? my e mail suatozkan1987@gmail.com. the app should take pic and upload the picture to picasa. but I m new . I could nt.

    Best Regards

  5. Hello,
    Finally I can take photo and send to picasa with location and comment. Then, How Can ı send multi photo to picasa. after select more than one photo, how can ı send them to picasa???

Leave a comment