アンドロイドスタジオ2.3.1でゲームを作成していて、最初の画面が開始画面です。ユーザーが開始画面に触れると、ゲームの場面に入ると考えられます。画像は背景として表示されますが、画像ビューとして保存されます。私は助けを求めようとしていますが、私はそれを受け取っておらず、どこから始めるべきか分かりません。これは私が手伝ってくれるすべてです。Handle ImageViewタッチイベント
activity_start:あなたのStartActivityのonCreateメソッドで
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.user.app.StartActivity"
>
<ImageView
android:id="@+id/start"
android:layout_width="600dp"
android:layout_height="380dp"
android:layout_marginBottom="-10dp"
android:layout_marginRight="1dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="0.444"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:srcCompat="@drawable/start" />
</android.support.constraint.ConstraintLayout>
私はこの '@Override 保護され、ボイドのonCreate(バンドルsavedInstanceState){ super.onCreate(savedInstanceState)からそれを変更します。 setContentView(R.layout.activity_start); } }「お勧めしたものは? – Dada
あなたのonCreateを追加したコード更新 –