Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm creating one game application, where screen having some Grids(5x5 matrix or 6x6 matrix etc.) and 5 coin icons. Once i selected a coin among 5 coins, and calling OnTouch event for that particular icon. and started to drag the coin icon over the screen. and releasing the coin. As soon as i released the finger, the coin should be placed on Center of nearest Grid. For Example, im dragging the coin over the screen and releasing my finger near to (0,0) position(i meant first cell of Grid) of 5x5 matrix, as soon as i released my fingers the coin should be centralized at first Grid(0,0) on Grid. i don't have any idea how to do it. Any one please suggest me what to do? Please friends.

i have tried the following code.

public class GameActivity extends Activity implements OnTouchListener {

private int X, Y;
private int GAME_SIZE_X;
private int GAME_SIZE_Y;
private int GAME_COIN_HEIGHT;
private int GAME_COIN_WIDTH;

public final Context ctx = this;

private AbsoluteLayout placeCoins;
private int xPos;
private int yPos;
private RelativeLayout cell;
public static CoinBucket coinBucket[][];

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
            WindowManager.LayoutParams.FLAG_FULLSCREEN);
    setContentView(R.layout.main);
    setGameLevel(4, 4);
    GAME_SIZE_X = State.getGameSizeX();
    GAME_SIZE_Y = State.getGameSizeY();
    GAME_COIN_HEIGHT = State.getGameCoinHeight();
    GAME_COIN_WIDTH  = State.getGameCoinWidth();
    coinBucket = new CoinBucket[GAME_SIZE_X][GAME_SIZE_Y];
    placeCoins = (AbsoluteLayout) findViewById(R.id.placeCoins);

    GameLayout gameLayout   = new GameLayout(this);
    GameTabelLayout bgTLayout = new GameTabelLayout(this);
    GameRowLayout emptyRowLayout[] = new GameRowLayout[GAME_SIZE_Y];

    bgTLayout = getEmptyPlateFilledTable(bgTLayout, emptyRowLayout);
    bgTLayout.setGravity(Gravity.CENTER_VERTICAL);
    gameLayout.addView(bgTLayout);
    placeCoins.addView(gameLayout);
    createSingleImage();
    createTwoImage();
}

private void createSingleImage() {
    ImageView coin = new ImageView(this);
    coin.setImageResource(R.drawable.coin);
    AbsoluteLayout.LayoutParams p;
    p = new AbsoluteLayout.LayoutParams(AbsoluteLayout.LayoutParams.WRAP_CONTENT,
            AbsoluteLayout.LayoutParams.WRAP_CONTENT, 0, 200);
    coin.setLayoutParams(p);
    coin.setOnTouchListener(this);
    placeCoins.addView(coin);
}
private void createTwoImage() {
    ImageView coin = new ImageView(this);
    coin.setImageResource(R.drawable.two_coin);
    AbsoluteLayout.LayoutParams p;
    p = new AbsoluteLayout.LayoutParams(AbsoluteLayout.LayoutParams.WRAP_CONTENT,
            AbsoluteLayout.LayoutParams.WRAP_CONTENT, 50, 200);
    coin.setLayoutParams(p);
    coin.setOnTouchListener(this);
    placeCoins.addView(coin);
}

public GameTabelLayout getEmptyPlateFilledTable(GameTabelLayout tLayout,
        GameRowLayout[] rowLayout){
    for (int i = 0; i < GAME_SIZE_X; i++) {
        rowLayout[i] = new GameRowLayout(this);
        for (int j = 0; j < GAME_SIZE_Y; j++) {
            TableRow.LayoutParams llp = new TableRow.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);
            llp.setMargins(2, 2, 2, 2);
            cell = new RelativeLayout(this);
            cell.setBackgroundColor(CoinBucket.EMPTY__COIN_ID);
            cell.setMinimumHeight(GAME_COIN_HEIGHT);
            cell.setMinimumWidth(GAME_COIN_WIDTH);
            cell.setLayoutParams(llp);

            /*cell.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    int width = cell.getMeasuredWidth();
                    int height = cell.getMeasuredHeight();

                    int[] values = new int[2]; 
                    view.getLocationOnScreen(values);

                    Toast.makeText(getApplicationContext(), "Height,Width " + height+","+width, Toast.LENGTH_SHORT).show();
                    Toast.makeText(getApplicationContext(), "Square X,Y: " + values[0]+","+values[1], Toast.LENGTH_SHORT).show();                       
                }
            });*/

            final ImageView iv = new ImageView(this);
            iv.setAdjustViewBounds(true);
            iv.setMaxHeight(GAME_COIN_HEIGHT);
            iv.setMaxWidth(GAME_COIN_WIDTH);
            iv.setScaleType(ImageView.ScaleType.FIT_CENTER);
            iv.setId(i);
            //iv.setBackgroundResource(R.drawable.coin);
            iv.setLayoutParams(new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, Gravity.CENTER_VERTICAL|Gravity.CENTER_HORIZONTAL)); 

            cell.addView(iv);
            rowLayout[i].addView(cell);
        }
        tLayout.addView(rowLayout[i]);
    }
    return tLayout;
}

public void setGameLevel(int x, int y){
    State.setGameSizeX(x);
    State.setGameSizeY(y);
    State.setGameCoinHeight(((35*9)/x) + 1);
    State.setGameCoinWidth(((35*9)/y) + 1);
}

@Override
public boolean onTouch(View v, MotionEvent event) {
    AbsoluteLayout.LayoutParams p;
    int eventaction = event.getAction();
    switch (eventaction) {

    case MotionEvent.ACTION_UP: {
        Toast.makeText(getApplicationContext(), "On Touch : X,Y: " + xPos+"," + yPos, Toast.LENGTH_SHORT).show();
        int width = cell.getMeasuredWidth();
        int height = cell.getMeasuredHeight();

        int[] values = new int[2]; 
        cell.getLocationOnScreen(values);

        //Toast.makeText(getApplicationContext(), "Height,Width " + height+","+width, Toast.LENGTH_SHORT).show();
        Toast.makeText(getApplicationContext(), "Square X,Y: " + values[0]+","+values[1], Toast.LENGTH_SHORT).show();
    }
    case MotionEvent.ACTION_MOVE: {
        v.bringToFront();
        int xx1 = (int) event.getX();
        int yy1 = (int) event.getY();
        X = v.getLeft() + xx1;
        Y = v.getTop() + yy1;
        AbsoluteLayout l = (AbsoluteLayout) findViewById(R.id.placeCoins);
        if ((v.getLeft() + (int) event.getX()) < 0)
            X = 1;
        else if ((v.getLeft() + xx1) > l.getRight()
                - (v.getRight() - v.getLeft()))
            X = l.getRight() - (v.getRight() - v.getLeft());

        if ((v.getTop() + yy1) < 0)
            Y = 1;
        else if ((v.getTop() + yy1) > l.getBottom() - l.getTop()
                - (v.getBottom() - v.getTop()))
            Y = l.getBottom() - l.getTop() - (v.getBottom() - v.getTop());
        xPos = X - (v.getWidth() / 24) - 16;

        yPos = Y - (v.getHeight() / 120) - 16;
        p = new AbsoluteLayout.LayoutParams(
                AbsoluteLayout.LayoutParams.WRAP_CONTENT,
                AbsoluteLayout.LayoutParams.WRAP_CONTENT, xPos, yPos);
        v.setLayoutParams(p);
        break;
    }
    default:
        return true;
    }
    return false;
}}

Its working fine with Drag and Drop, but not working as i expected. all the time coin is getting placed over the screen position, where i released my finger. I don't have any idea how to get the nearest Grid and place it center of appropriate Grid.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.