2017-06-29 18 views
0

アンドロイドスタジオ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> 

答えて

0

findViewById(R.id.start).setOnClickListener(new View.OnClickListener() { 
      @Override 
      public void onClick(View v) { 
       // start your game scene 
      } 
    }); 
+0

私はこの '@Override 保護され、ボイドのonCreate(バンドルsavedInstanceState){ super.onCreate(savedInstanceState)からそれを変更します。 setContentView(R.layout.activity_start); } }「お勧めしたものは? – Dada

+0

あなたのonCreateを追加したコード更新 –

0

代わりに、画面の背景としてImageViewのを持っていることのあなたの背景属性として画像を設定した場合、それは良いだろうレイアウト。あなたのケースでは、imageViewをバックグラウンドとして保持すると、画面サイズの異なるデバイスで問題が発生する可能性があります。

<?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:id="[email protected]/start" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
tools:context="com.example.user.app.StartActivity" 
android:background="@drawable/start" 
> 

..... 




</android.support.constraint.ConstraintLayout> 
Javaコードで

public void onCreate(Bundle savedInstanceState) 
{ 
     .... 
     ConstraintLayout startScreen = (ConstraintLayout)findViewByID(R.id.start) 
     startScreen.setOnClickListener(this); 

} 



public void onClick(View v) { 
    startGame(); 
} 
+0

これは何ですか? – Dada

+0

不完全な回答を間違って投稿しました。私は今更新しました –

+0

'findViewByID'' start' 'StartActivity'と' startGame'はすべて赤色です – Dada

関連する問題