| setStepSize() | ใช้กำหนด step size ให้กับ Object RatingBar |
|---|
method:setStepSize ( float stepSize )
return type:void
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 ); rating_bar.setMax ( 100 ); rating_bar.setStepSize ( 5 ); setContentView ( rating_bar ); } }