주기적으로 랜덤한 위치에 텍스트를 출력하려고 하는데요.

    TextView text = (TextView)View.inflate(Game.this, R.layout.gametextview, null);
    text.setGravity(Gravity.CENTER);
    text.setTextSize(40);
    text.setText(myWords[0]);
linear.addView(text);

이런 식으로 텍스트를 세팅하고 나서, 위치를 조정하려고 보니까 적당한 함수가 없네요.
코드에서 마진을 사용할 수는 없을까요?

그냥 drawText함수 써야할까요..