私の活動に3つの画像を配置すると、クラッシュします。 を見つけることができません。ImageButtonが3つ以上あるとSecondActivityがクラッシュする
まず活動
public class SquareMain extends AppCompatActivity {//MainActivity
private boolean isUserClickedBackButton = false;
@Override
protected void onCreate(Bundle savedInstanceState) {//OnCreate
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_square_main);
mainmusic();
}//OnCreate
public void presshere(View view)//pressherebutton
{
Intent press = new Intent(SquareMain.this, SquareHome.class);
startActivity(press);
}//pressherebutton
public void mainmusic(){//mainmusic
MediaPlayer mainmusic = MediaPlayer.create(SquareMain.this, R.raw.mainmeunsong);//main music
mainmusic.start();//main music
mainmusic.setLooping(true);//main music
}
}//MainActivity
セカンド活動
public class SquareHome extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_square_home);
}
}
Imageボタン
<ImageButton
android:id="@+id/pressherebutton"
android:layout_width="161dp"
android:layout_height="28dp"
android:layout_marginBottom="8dp"
android:layout_marginTop="8dp"
android:background="@mipmap/squarepresshere"
android:onClick="presshere"
android:scaleType="centerCrop"
android:text="@string/presshere"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="0.498"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.86"
app:srcCompat="@drawable/squarepresshere"
tools:layout_editor_absoluteY="223dp" />
私SecondA 3つ以上の画像ボタンが置かれていると、状況がクラッシュする。 これを解決する方法について考えている人はいますか?
ここで、コード内の画像ボタンはありますか?質問にクラッシュログを含めてください – UmarZaii
質問と画像をボタンコードに編集 –
logcatを含めることができますか?それなしで問題を理解することはできません。 – JediBurrell