У меня есть 1 фрагмент.
public class LoginFragment extends Fragment
EditText matricula;
public LoginFragment() {
}
public static LoginFragment newInstace(String param1, String param2){
LoginFragment fragment = new LoginFragment();
return fragment;
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
final View v = inflater.inflate(R.layout.fragment_login, container, false);
matricula = v.findViewById(R.id.matricula);
final Button ingresar = (Button)v.findViewById(R.id.ingresar);
ingresar.setOnClickListener(new View.OnClickListener(){
@Override
public void onClick(View view) {
Toast.makeText(getActivity(), matricula.getText().toString(), Toast.LENGTH_SHORT).show();
}
});
return v;
}
и мой mainActivity
public class MainActivity {
LoginFragment loginFragment;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
loginFragment = new LoginFragment();
getSupportFragmentManager().beginTransaction().add(R.id.interfaceSesion,loginFragment).commit();
}
}
Но когда я нажимаю кнопку «Ingresar», тост бросает мне начальное значение EditText, и я изменяю текст
Вот фрагмент XLM.
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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="@+id/interfaceSesion"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".LoginFragment">
<EditText
android:id="@+id/matricula"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:ems="10"
android:hint="@string/matricula"
android:importantForAutofill="no"
android:inputType="number"
android:maxLength="5"
android:text="@string/asd"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.497"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.144" />
<Button
android:id="@+id/ingresar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/ingresar"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/password"
app:layout_constraintVertical_bias="0.095" />
</androidx.constraintlayout.widget.ConstraintLayout>
Если кому-то нужна дополнительная информация, не стесняйтесь обращаться ко мне, сделайте несколько дней, чтобы я не смог ее решить. Я был бы очень признателен