質問編集履歴

3

2019/11/22 15:18

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -6,6 +6,66 @@
6
6
 
7
7
 
8
8
 
9
+ ```ここに言語を入力
10
+
11
+ <?xml version="1.0" encoding="utf-8"?>
12
+
13
+ <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
14
+
15
+ xmlns:app="http://schemas.android.com/apk/res-auto"
16
+
17
+ android:layout_width="match_parent"
18
+
19
+ android:layout_height="match_parent">
20
+
21
+
22
+
23
+ <TextView
24
+
25
+ android:id="@+id/text_login"
26
+
27
+ android:layout_width="match_parent"
28
+
29
+ android:layout_height="wrap_content"
30
+
31
+ android:layout_marginStart="8dp"
32
+
33
+ android:layout_marginTop="8dp"
34
+
35
+ android:layout_marginEnd="8dp"
36
+
37
+ android:textAlignment="center"
38
+
39
+ android:textSize="20sp"
40
+
41
+ app:layout_constraintEnd_toEndOf="parent"
42
+
43
+ app:layout_constraintStart_toStartOf="parent"
44
+
45
+ app:layout_constraintTop_toTopOf="parent" />
46
+
47
+
48
+
49
+ <WebView
50
+
51
+ android:id="@+id/webview_login"
52
+
53
+ android:layout_width="match_parent"
54
+
55
+ android:layout_height="match_parent"
56
+
57
+ />
58
+
59
+
60
+
61
+ </androidx.constraintlayout.widget.ConstraintLayout>
62
+
63
+ ```
64
+
65
+
66
+
67
+
68
+
9
69
  お世話になります。
10
70
 
11
71
  画像の矢印の部分をご覧ください。

2

ああ

2019/11/22 15:18

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -1,3 +1,11 @@
1
+ #追記
2
+
3
+
4
+
5
+ ![イメージ説明](74f9bc2a93e8d43c15c810b9b648aa9d.png)
6
+
7
+
8
+
1
9
  お世話になります。
2
10
 
3
11
  画像の矢印の部分をご覧ください。

1

2019/11/22 15:16

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -8,13 +8,17 @@
8
8
 
9
9
  なんとか上部矢印のメニューを消す事に成功しました。確かに消す事には成功したのですが余白が生まれてしまいます。
10
10
 
11
- Googleのホームページなのでわかりずらいですが、うっすら矢印の内部の色は違います。矢印より内側はGoogleのホームページが表示されているわけではありません。つまりWEBVIEWではありません。※MATCHPARENTしてるのに!
11
+ Googleのホームページなのでわかりずらいですが、うっすら矢印の内部の色は違います。矢印より内側はGoogleのホームページが表示されているわけではありません。つまりWEBVIEWではありません。
12
12
 
13
13
 
14
14
 
15
15
  メニューの余白を削除した以下の図のようにWebを全体に表示させるためには
16
16
 
17
17
  どのようにコードを記載すればいいのでしょうか?以下の図をご覧ください。余白がなくきれいにWEBが表示されています。このような実装がしたいです。
18
+
19
+
20
+
21
+ #実装したいweb表示画面レイアウト
18
22
 
19
23
 
20
24