質問編集履歴

2

2019/11/20 12:32

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -7,8 +7,6 @@
7
7
  しかし右のSearchには「Search」とテキストで打っても出てきません。
8
8
 
9
9
  hhhの列をコピーしても表示されませんでした。
10
-
11
- どのように設定すれば右の画像の下に文字が入るのでしょうか?
12
10
 
13
11
 
14
12
 
@@ -33,3 +31,101 @@
33
31
 
34
32
 
35
33
  ![イメージ説明](bbaf6dcd27a9b11978d08990814a0b2b.png)
34
+
35
+
36
+
37
+
38
+
39
+ 調べたところメニューが3つだと文字が表示されます。
40
+
41
+ ```ここに言語を入力
42
+
43
+ <item
44
+
45
+ android:id="@+id/navigation_home"
46
+
47
+ android:icon="@drawable/ic_home_black_24dp"
48
+
49
+ android:title="@string/title_home" />
50
+
51
+
52
+
53
+ <item
54
+
55
+ android:id="@+id/navigation_notifications"
56
+
57
+ android:icon="@drawable/ic_notifications_black_24dp"
58
+
59
+ android:title="@string/title_notifications" />
60
+
61
+
62
+
63
+ <item
64
+
65
+ android:id="@+id/navigation_dashboard"
66
+
67
+ android:icon="@drawable/ic_dashboard_black_24dp"
68
+
69
+ android:title="Setting" />
70
+
71
+ ```
72
+
73
+
74
+
75
+
76
+
77
+ しかし4つだと文字が消えます。
78
+
79
+
80
+
81
+ ```ここに言語を入力
82
+
83
+ <item
84
+
85
+ android:id="@+id/navigation_home"
86
+
87
+ android:icon="@drawable/ic_home_black_24dp"
88
+
89
+ android:title="@string/title_home" />
90
+
91
+
92
+
93
+
94
+
95
+
96
+
97
+ <item
98
+
99
+ android:id="@+id/navigation_notifications"
100
+
101
+ android:icon="@drawable/ic_notifications_black_24dp"
102
+
103
+ android:title="@string/title_notifications" />
104
+
105
+
106
+
107
+ <item
108
+
109
+ android:id="@+id/navigation_dashboard"
110
+
111
+ android:icon="@drawable/ic_dashboard_black_24dp"
112
+
113
+ android:title="Setting" />
114
+
115
+
116
+
117
+ <item
118
+
119
+ android:id="@+id/navigation_dashboard"
120
+
121
+ android:icon="@drawable/ic_dashboard_black_24dp"
122
+
123
+ android:title="Setting" />
124
+
125
+ ```
126
+
127
+
128
+
129
+ 4つでロゴの下に文字を入れる為にはどのように
130
+
131
+ ボトムナビを設定すればいいですか?

1

2019/11/20 12:32

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -12,13 +12,23 @@
12
12
 
13
13
 
14
14
 
15
-
15
+ <item
16
16
 
17
- 左の×の窓と
17
+ android:id="@+id/navigation_home"
18
18
 
19
+ android:icon="@drawable/ic_home_black_24dp"
20
+
19
- 下の×の窓を閉じたいのですがどのようにすれば窓を閉じる事ができますか?
21
+ android:title="HHH"/>
20
22
 
21
23
 
24
+
25
+ <item
26
+
27
+ android:id="@+id/navigation_search"
28
+
29
+ android:icon="@drawable/ic_search_black_24dp"
30
+
31
+ android:title="Seach"/>
22
32
 
23
33
 
24
34