質問編集履歴
7
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#seekbar
|
1
|
+
#seekbarを使って背景色を変更したいです.
|
2
2
|
|
3
3
|
|
4
4
|
|
6
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,8 +1,4 @@
|
|
1
|
-
#seekbarの値に応じて,背景色が変わるプログラム
|
1
|
+
#seekbarの値に応じて,背景色が変わるプログラムを作りたいです.
|
2
|
-
|
3
|
-
Androidアプリ開発初心者です.
|
4
|
-
|
5
|
-
このようなプログラムを作成するにはまず何から勉強していけばよろしいのでしょうか.
|
6
2
|
|
7
3
|
|
8
4
|
|
5
質問内容の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,10 @@
|
|
1
|
-
#seekbarの値に応じて,背景色が変わるプログラム
|
1
|
+
#seekbarの値に応じて,背景色が変わるプログラム
|
2
|
+
|
3
|
+
Androidアプリ開発初心者です.
|
4
|
+
|
5
|
+
このようなプログラムを作成するにはまず何から勉強していけばよろしいのでしょうか.
|
6
|
+
|
7
|
+
|
2
8
|
|
3
9
|
|
4
10
|
|
4
ソースコードの挿入
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,6 +12,72 @@
|
|
12
12
|
|
13
13
|
![イメージ説明](028655ffc6b172d14835d6c409b7fef5.png)
|
14
14
|
|
15
|
+
```Kotlin
|
16
|
+
|
17
|
+
<?xml version="1.0" encoding="utf-8"?>
|
18
|
+
|
19
|
+
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
20
|
+
|
21
|
+
xmlns:app="http://schemas.android.com/apk/res-auto"
|
22
|
+
|
23
|
+
xmlns:tools="http://schemas.android.com/tools"
|
24
|
+
|
25
|
+
android:layout_width="match_parent"
|
26
|
+
|
27
|
+
android:layout_height="match_parent"
|
28
|
+
|
29
|
+
tools:context=".MainActivity">
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
<View
|
36
|
+
|
37
|
+
android:id="@+id/backgroundColor"
|
38
|
+
|
39
|
+
android:layout_width="wrap_content"
|
40
|
+
|
41
|
+
android:layout_height="wrap_content"
|
42
|
+
|
43
|
+
android:background="#0000FF"
|
44
|
+
|
45
|
+
app:layout_constraintBottom_toBottomOf="parent"
|
46
|
+
|
47
|
+
app:layout_constraintEnd_toEndOf="parent"
|
48
|
+
|
49
|
+
app:layout_constraintStart_toStartOf="parent"
|
50
|
+
|
51
|
+
app:layout_constraintTop_toTopOf="parent" />
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
<SeekBar
|
56
|
+
|
57
|
+
android:id="@+id/seekBar"
|
58
|
+
|
59
|
+
android:layout_width="match_parent"
|
60
|
+
|
61
|
+
android:layout_height="wrap_content"
|
62
|
+
|
63
|
+
android:max="255"
|
64
|
+
|
65
|
+
app:layout_constraintBottom_toBottomOf="parent"
|
66
|
+
|
67
|
+
app:layout_constraintLeft_toLeftOf="parent"
|
68
|
+
|
69
|
+
app:layout_constraintRight_toRightOf="parent"
|
70
|
+
|
71
|
+
app:layout_constraintTop_toTopOf="parent" />
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
</androidx.constraintlayout.widget.ConstraintLayout>
|
78
|
+
|
79
|
+
```
|
80
|
+
|
15
81
|
|
16
82
|
|
17
83
|
![イメージ説明](c93ef198ceba9eb7fb3297b08d7b8a9d.png)
|
@@ -20,6 +86,56 @@
|
|
20
86
|
|
21
87
|
![イメージ説明](11e9638deb038bb20cc548abb4a77b40.png)
|
22
88
|
|
89
|
+
```Kotlin
|
90
|
+
|
91
|
+
package com.example.healthcareapp
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
import androidx.appcompat.app.AppCompatActivity
|
96
|
+
|
97
|
+
import android.os.Bundle
|
98
|
+
|
99
|
+
import android.widget.TextView
|
100
|
+
|
101
|
+
import android.graphics.Color
|
102
|
+
|
103
|
+
import android.widget.SeekBar
|
104
|
+
|
105
|
+
import kotlinx.android.synthetic.main.activity_main.*
|
106
|
+
|
107
|
+
import android.widget.SeekBar.OnSeekBarChangeListener
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
class MainActivity : AppCompatActivity() {
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
override fun onCreate(savedInstanceState: Bundle?) {
|
120
|
+
|
121
|
+
super.onCreate(savedInstanceState)
|
122
|
+
|
123
|
+
setContentView(R.layout.activity_main)
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
}
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
}
|
136
|
+
|
137
|
+
```
|
138
|
+
|
23
139
|
|
24
140
|
|
25
141
|
解決法だけでなく質問の仕方など,ご指摘もいただけたら嬉しいです.
|
3
タイトルの修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
【Androidアプリ開発】seekbarの値を背景色に渡したい
|
1
|
+
【Androidアプリ開発・Kotlin】seekbarの値を背景色に渡したい
|
test
CHANGED
File without changes
|
2
本文の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -19,3 +19,7 @@
|
|
19
19
|
|
20
20
|
|
21
21
|
![イメージ説明](11e9638deb038bb20cc548abb4a77b40.png)
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
解決法だけでなく質問の仕方など,ご指摘もいただけたら嬉しいです.
|
1
タイトルの変更
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
seekbarの値を背景色に渡したい
|
1
|
+
【Androidアプリ開発】seekbarの値を背景色に渡したい
|
test
CHANGED
File without changes
|