質問編集履歴

1

2017/10/02 02:33

投稿

aaaafg8hfh
aaaafg8hfh

スコア18

test CHANGED
File without changes
test CHANGED
@@ -7,3 +7,35 @@
7
7
  3、解凍ツール
8
8
 
9
9
  もし良ければAndroidのアプリ、またはAndroidで実行できるプログラムをかいていただけば幸いです。ちなみに、画面に表示したい言葉はhappy birthday です。今日中によろしくお願いいたします。
10
+
11
+ ちなみにこれを試したのですがエラーになってしまいました。⬇️
12
+
13
+ package com.example.textview.test;
14
+
15
+ import android.os.Bundle;
16
+
17
+ import android.app.Activity;
18
+
19
+ import android.widget.TextView;
20
+
21
+
22
+
23
+ public class MainActivity extends Activity {
24
+
25
+
26
+
27
+ @Override
28
+
29
+ public void onCreate(Bundle savedInstanceState) {
30
+
31
+ super.onCreate(savedInstanceState);
32
+
33
+ TextView textView = new TextView(getApplicationContext());
34
+
35
+ textView.setText("HelloWorld");
36
+
37
+ setContentView(textView);
38
+
39
+ }
40
+
41
+ }