I have some problems with onClicklistener in fragment. If I click on the button, nothing happens. I do not receive a message from onClicklistener in Logcat, nor a toast appears on the screen, but I can not find the error in the code. Any ideas?
I would be grateful for any help! Thank you very much! And sorry for my bad english
import android.app.Fragment; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.View.OnClickListener; import android.view.ViewGroup; import android.widget.EditText; import android.widget.Button; import android.widget.Toast; import android.util.Log; public class InputFragment extends Fragment { EditText input_text; String text; Button translate_button; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View InputFragmentView = inflater.inflate(R.layout.input_fgmt, container, false); input_text = (EditText) InputFragmentView.findViewById(R.id.input_field); translate_button = (Button) InputFragmentView.findViewById(R.id.translate); translate_button.setOnClickListener(new OnClickListener() { @Override public void onClick(View view) { Log.d("Test", "onClickListener ist gestartet"); Toast.makeText(getActivity().getApplicationContext(), "Test", Toast.LENGTH_LONG).show(); saveInString(); } }); return inflater.inflate(R.layout.input_fgmt, container, false); } public void saveInString() { if(text.equals(null)) { Toast.makeText(getActivity().getApplicationContext(), "Das Feld ist leer!", Toast.LENGTH_SHORT).show(); } else { Toast.makeText(getActivity().getApplicationContext(), "Speichern...", Toast.LENGTH_LONG).show(); text = input_text.getText().toString(); Toast.makeText(getActivity().getApplicationContext(), "Fertig", Toast.LENGTH_SHORT).show(); } } }
source share