回答編集履歴
1
実験結果追加
test
CHANGED
@@ -3,3 +3,57 @@
|
|
3
3
|
|
4
4
|
|
5
5
|
unicode には数多くの文字・記号が定義されていますので、その中から合いそうなモノを選んで、文字列の中のタブや改行コードをそれに置き換えるか追加すればよいのではないでしょうか。
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
```java
|
10
|
+
|
11
|
+
import androidx.appcompat.app.AppCompatActivity;
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
import android.os.Bundle;
|
16
|
+
|
17
|
+
import android.widget.TextView;
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
public class MainActivity extends AppCompatActivity {
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
@Override
|
26
|
+
|
27
|
+
protected void onCreate(Bundle savedInstanceState) {
|
28
|
+
|
29
|
+
super.onCreate(savedInstanceState);
|
30
|
+
|
31
|
+
setContentView(R.layout.activity_main);
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
String text =
|
36
|
+
|
37
|
+
"void main(String args[]) {\n" +
|
38
|
+
|
39
|
+
"\tfor(int i=0; i<10; i++) {\n" +
|
40
|
+
|
41
|
+
"\t\tSystem.out.println(\"\"+i);\n" +
|
42
|
+
|
43
|
+
"\t}\n" +
|
44
|
+
|
45
|
+
"}\n";
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
text = text.replace("\n","\u21B5\n").replace("\t","\u21E5\t");
|
50
|
+
|
51
|
+
((TextView)findViewById(R.id.textView)).setText(text);
|
52
|
+
|
53
|
+
}
|
54
|
+
|
55
|
+
}
|
56
|
+
|
57
|
+
```
|
58
|
+
|
59
|
+
![実行結果](d44728570f955c5b154c48d348b78734.png)
|