1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| public void noter(View vue){
RatingBar r_bar = new RatingBar(getApplicationContext());
r_bar.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));
r_bar.setNumStars(5);
//fait pop une dialog box
AlertDialog.Builder adb = new AlertDialog.Builder(F2_Activity.this);
adb.setTitle("Note & commentaires");
adb.setMessage("Note & commentaires");
adb.setView(r_bar);
adb.setPositiveButton("Ok", null/*new PosListener(position)*/);
adb.setNegativeButton("Nop", null/*listener*/);
adb.show();
}//noter() |