Exemplo n.º 1
0
  @Override
  public Dialog onCreateDialog(int i) {

    WPEntry entry = entries.get(i);

    Dialog dialog = new Dialog(this);
    //		dialog.setOwnerActivity(this);

    dialog.setContentView(R.layout.entry_dialog);
    dialog.setTitle(entry.getSportInt());

    TextView dateView = (TextView) dialog.findViewById(R.id.date);
    dateView.setText(entry.date.toString()); // TODO: Formatieren

    TextView durationView = (TextView) dialog.findViewById(R.id.duration);
    durationView.setText("Dauer: " + entry.duration + " min");

    TextView pointsView = (TextView) dialog.findViewById(R.id.points);
    pointsView.setText(entry.getPoints() + " Punkte");

    TextView notesView = (TextView) dialog.findViewById(R.id.notes);
    notesView.setText(entry.notes);

    return dialog;
  }