Я работаю над мобильным приложением, Java Android и использую Android Studio в качестве IDE. На первом экране (первое действие) проблем нет, и кнопка go для второго действия работает нормально. Но у меня есть 3 действия, и я поставил кнопку во втором действии (чтобы переключиться на третье действие). Эта кнопка видна при разработке, но невидима, когда я запускаю приложение с эмулятором. Не понимаю почему. Может ли кто-нибудь мне помочь?
Это java файл
package com.example.debit_cablage.controler;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
import com.example.debit_cablage.R;
public class EditorActivity extends AppCompatActivity {
public static final String ACTION ="com.example.SHOW_REPORT_ACTIVITY";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_editor);
TextView textView = new TextView(this);
textView.setTextSize(20);
textView.setPadding(16, 16, 16, 16);
Bundle arguments = getIntent().getExtras();
if(arguments != null) {
String name = arguments.get("spinner_name").toString();
String affaire = arguments.get("spinner_affaire").toString();
String equipe = arguments.get("spinner_equipe").toString();
textView.setText("Vous êtes : " + name + "\nVous prenez les matériels pour le numéro d'affiare : " + affaire + "\net pour l'équipement : "+ equipe);
}
setContentView(textView);
}
public void onClickEditor(View view) {
Intent intent2 = new Intent(this, ReportActivity.class);
startActivity(intent2);
}
}
А это XML
<?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.debit_cablage.controler.EditorActivity">
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="50dp"
android:textSize="10dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.06" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="161dp"
android:background="@android:color/holo_blue_light"
android:onClick="onClickEditor"
android:text="Continuer"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent">
</Button>
</android.support.constraint.ConstraintLayout>