| getStepSize() | ใช้คืนค่า step size ของ Object RatingBar |
|---|
method:getStepSize ( )
return type:float
content:ใช้คืนค่า step size ของ Object RatingBar
example:public class AndroidBamboo extends Activity { public void onCreate( Bundle savedInstanceState ) { super.onCreate ( savedInstanceState ); RatingBar rating_bar = new RatingBar ( this ); float step_size = rating_bar.getStepSize ( ); setContentView ( rating_bar ); } }