I have a problem placing a textView at specified center\'s x and y coordinates. Firstly, I tried to set the text in the textView, and to move the view with the width and the
If your textview is called TV
TV.setText("bla"); TV.measure(0, 0); //must call measure! TV.getMeasuredHeight(); //get height TV.getMeasuredWidth(); //get width
More on this (updated): How to get width/height of a View