Button hoursButton = (Button) findViewById(R.id.hours);
final AlertDialog.Builder openinghours = new AlertDialog.Builder(this);
hoursButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
openinghours.setTitle("Opening Hours");
openinghours.setMessage(
"\nMonday: CLOSED"
+ "\nTuesday: CLOSED"
+ "\nWednesday: 22:00 - 3:00"
+ "\nThursday: CLOSED"
+ "\nFriday: 22:00 - 3:00"
+ "\nSaturday: 22:00 - 3:00"
+ "\nSunday: CLOSED");
openinghours.setPositiveButton("OK",
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
営業時間が表示されます。実際の営業時間をきちんと直線で表示したいのですが、次のように表示されます。
すべてがまっすぐに形成された線に見えるように、文字列の間隔を空けようとしています。
これを行うためのより良い方法があるはずですか?