7)AutoCompleteTextView(自动完成)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:andro></RatingBar>
public class ShowView extends Activity {
/** Called when the activity is first created. */
// 得到评级条
private RatingBar tbar;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
tbar = (RatingBar)this.findViewById(R.id.RatingBar01);
tbar.setRating(3.5f);// 这是用来设置评分等级的
}
}
相关文章: