Comment afficher la date et l’heure dans une application Android ?
Réponses
Trop de publicités?OK, pas si dur car il sont plusieurs méthodes pour ce faire. Je suppose que vous voulez mettre la date & heure actuelles dans un `` .
Il n’y a plus à lire dans la documentation qui peut facilement être trouvée ici . Vous y trouverez plus d’informations sur la façon de changer le format utilisé pour la conversion.
Prashant
Points
367
public 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 doWork() {
runOnUiThread(new Runnable() {
public void run() {
try{
TextView txtCurrentTime= (TextView)findViewById(R.id.lbltime);
Date dt = new Date();
int hours = dt.getHours();
int minutes = dt.getMinutes();
int seconds = dt.getSeconds();
String curTime = hours + ":" + minutes + ":" + seconds;
txtCurrentTime.setText(curTime);
}catch (Exception e) {}
}
});
}
class CountDownRunner implements Runnable{
// @Override
public void run() {
while(!Thread.currentThread().isInterrupted()){
try {
doWork();
Thread.sleep(1000);
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
}catch(Exception e){
}
}
}
}
Dave Webb
Points
90034
Les choix évidents pour l'affichage de l'heure sont l' AnalogClock
de la Vue et de l' DigitalClock
Vue.
Par exemple, la mise en page suivante:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<AnalogClock
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<DigitalClock
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textSize="20sp"/>
</LinearLayout>
Ressemble à ceci:
fred
Points
153