I have created a simple UI for my feedbackFragment, where I have created a submit button. I want that whenever any user fills up all edit texts or blank fields as showed in the screenshot & when the user presses the submit button, all filled contents will be sent to my email address.
public class Feedback extends Fragment {
public View onCreateView(@NonNull LayoutInflater inflater,
ViewGroup container, Bundle savedInstanceState)
{
View root = inflater.inflate(R.layout.activity_feedback, container, false);
return root;
}
}
I have provided you my Feedback.java
code block.