質問編集履歴
1
ソースコードを記載
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,15 +20,7 @@
|
|
20
20
|
|
21
21
|
|
22
22
|
|
23
|
-
*****
|
24
|
-
|
25
|
-
時間取得
|
26
|
-
|
27
|
-
時間保存
|
28
|
-
|
29
|
-
|
23
|
+
sample();
|
30
|
-
|
31
|
-
******
|
32
24
|
|
33
25
|
|
34
26
|
|
@@ -37,3 +29,35 @@
|
|
37
29
|
|
38
30
|
|
39
31
|
});
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
public void sample(){
|
36
|
+
|
37
|
+
Calendar cal=Calendar.getInstance();
|
38
|
+
|
39
|
+
String tmp=cal.get(Calendar.YEAR)+"/"+(cal.get(Calendar.MONTH)+1)+"/"+cal.get(Calendar.DATE)+" "+cal.get(Calendar.HOUR_OF_DAY)+":"+cal.get(Calendar.MINUTE);
|
40
|
+
|
41
|
+
printString(tmp);
|
42
|
+
|
43
|
+
}
|
44
|
+
|
45
|
+
public void printString(String s){
|
46
|
+
|
47
|
+
LinearLayout parent=(LinearLayout) findViewById( R.id.parent );
|
48
|
+
|
49
|
+
TextView tv=new TextView( this );
|
50
|
+
|
51
|
+
tv.setTypeface( Typeface.MONOSPACE );
|
52
|
+
|
53
|
+
tv.setText( s );
|
54
|
+
|
55
|
+
parent.addView(tv);
|
56
|
+
|
57
|
+
}
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
これでやったんですが,これだと保存ができなくて他画面の表示ができなくて困っています。
|