1

このように時計を表示するつもりです

代替テキスト

私は時計のためにやった..上の写真のような小さなテキスト「PM」を取得する方法がわかりません。

MON TUE WEDにも....

Calendar c = new GregorianCalendar();

 if(c.get(Calendar.DAY_OF_WEEK) == Calendar.MONDAY){
    System.out.println("MON");
} else if (c.get(Calendar.DAY_OF_WEEK) == Calendar.TUESDAY){
        System.out.println("TUE");
}

など。

4

2 に答える 2

1

AM/PM インジケータはTextView、レイアウト内の適切な位置にある別の で、小さいandroid:textSizeです。少なくとも、それは私がそれを行う方法です。

質問を誤解していた場合は申し訳ありませんが、「テキストを最小化する」という言葉の意味を判断するのは困難です。

于 2010-06-26T09:50:12.857 に答える
0
private ImageView img;
 Handler mHandler;

 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);

  Thread myThread = null;

  Runnable runnable = new CountDownRunner();
  myThread = new Thread(runnable);
  myThread.start();

 }

 public void doRotate() {

  runOnUiThread(new Runnable() {
   public void run() {
    try {

     Date dt = new Date();
     int hours = dt.getHours();
     int minutes = dt.getMinutes();
     int seconds = dt.getSeconds();
     String curTime = hours + ":" + minutes + "::" + seconds;
     Log.v("log_tag", "Log is here Time is now" + curTime);
     img = (ImageView) findViewById(R.id.imgsecond);
     RotateAnimation rotateAnimation = new RotateAnimation(
       (seconds - 1) * 6, seconds * 6,
       Animation.RELATIVE_TO_SELF, 0.5f,
       Animation.RELATIVE_TO_SELF, 0.5f);

     rotateAnimation.setInterpolator(new LinearInterpolator());
     rotateAnimation.setDuration(1000);
     rotateAnimation.setFillAfter(true);

     img.startAnimation(rotateAnimation);
    } catch (Exception e) {

    }
   }
  });
 }

 class CountDownRunner implements Runnable {
  // @Override
  public void run() {
   while (!Thread.currentThread().isInterrupted()) {
    try {

     doRotate();
     Thread.sleep(1000);
    } catch (InterruptedException e) {
     Thread.currentThread().interrupt();
    } catch (Exception e) {
     Log.e("log_tag", "Error is " + e.toString());
    }
   }
  }
 }
于 2013-01-31T06:13:18.157 に答える