前提・実現したいこと
Android Studio初心者で、お絵描きアプリを作ろうと思っています。
黒、青、赤の3色のボタンを用意し、押した後にペンが該当色に変わるようにしようとしています。
ボタンを画面に表示するところで、MainActivityクラスのsetContentViewメソッドの変数に描画クラスMyViewを指定したところ、宣言の段階でボタンの値がnullで返ってきてしまい、うまく画面に表示できません。
xmlのボタンの記述は、MyViewをxmlに登録し、その中で行っています。
3色のボタンを指定し表示させるためにはどうすればよろしいでしょうか。
[追記]
今目指したいDesign画面は次のようになります。
該当のソースコード
MainActivity
java
1import androidx.appcompat.app.AppCompatActivity; 2import android.os.Bundle; 3import android.view.View; 4import android.widget.Button; 5 6public class MainActivity extends AppCompatActivity implements View.OnClickListener { 7 8 @Override 9 protected void onCreate(Bundle savedInstanceState) { 10 super.onCreate(savedInstanceState); 11 setContentView(new MyView(this)); 12 Button bBlack = (Button) findViewById(R.id.bBlack); 13 Button bBlue = (Button) findViewById(R.id.bBlue); 14 Button bRed = (Button) findViewById(R.id.bRed); 15 bBlack.setOnClickListener(this); 16 } 17 18 @Override 19 public void onClick(View view) { 20 // 21 } 22}
activity_main
xml
1<?xml version="1.0" encoding="utf-8"?> 2<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto" 4 xmlns:tools="http://schemas.android.com/tools" 5 android:layout_width="match_parent" 6 android:layout_height="match_parent" 7 tools:context=".MainActivity"> 8 9 <[パッケージ名クラス名].MyView 10 android:layout_width="match_parent" 11 android:layout_height="match_parent" 12 tools:ignore="MissingConstraints" 13 tools:layout_editor_absoluteX="0dp" 14 tools:layout_editor_absoluteY="0dp"> 15 16 <Button 17 android:id="@+id/bBlack" 18 android:layout_width="50dp" 19 android:layout_height="wrap_content" 20 android:layout_marginStart="28dp" 21 android:layout_marginBottom="28dp" 22 android:background="#000000" 23 app:layout_constraintBottom_toBottomOf="parent" 24 app:layout_constraintStart_toStartOf="parent" /> 25 26 <Button 27 android:id="@+id/bRed" 28 android:layout_width="50dp" 29 android:layout_height="wrap_content" 30 android:layout_marginBottom="28dp" 31 android:background="#FF0000" 32 app:layout_constraintBottom_toBottomOf="parent" 33 app:layout_constraintStart_toEndOf="@+id/bBlue" /> 34 35 <Button 36 android:id="@+id/bBlue" 37 android:layout_width="50dp" 38 android:layout_height="wrap_content" 39 android:layout_marginBottom="28dp" 40 android:background="#0000FF" 41 app:layout_constraintBottom_toBottomOf="parent" 42 app:layout_constraintStart_toEndOf="@+id/bBlack" /> 43 </[パッケージ名].MyView> 44 45</androidx.constraintlayout.widget.ConstraintLayout>
回答1件
あなたの回答
tips
プレビュー