I would like this to behave just like the "Send Feedback" behaves when you click on the Menu item in the Google+ Android app.

- 918
- 4
- 11
- 19
-
1What have you tried? Please post the relevant code, the logcat errors, and a brief description of why it might not work. – Sam Jul 04 '12 at 00:27
-
@Sam I haven't tried anything yet because I'm not sure what to do. But I have attached a screen shot of what I was talking about in the original post. After clicking on the "Send Feedback" menu item the user is presented with the screenshot above. This is similar to how Error Reports are sent to the original developer. – oracleicom Jul 04 '12 at 15:42
-
Ok, the basic layout is simple a TextView, an EditView, and a couple Buttons. The next question is how / where do you want to send / store the feedback? Do you want them as emails, in a database, something else? Do you have a server set up to receive the feedback? – Sam Jul 04 '12 at 16:20
-
This looks to be more of an OS type thing and not a custom view. The reason I say that is because this is the same screen a user is presented with when he/she reports an issue to a developer (i.e. ANR or Force Close). I could be wrong though. – oracleicom Jul 05 '12 at 03:48
-
1Related: http://stackoverflow.com/questions/7418108/google-plus-send-feedback-tool – AlikElzin-kilaka Aug 06 '12 at 10:07
-
Related: http://stackoverflow.com/questions/10812432/how-to-use-send-feeback-feedbackactivity-in-android – Flow Dec 05 '16 at 13:48
3 Answers
I'm not exactly sure how this app behaves with the "Send Feedback". Could you explain it to me, so I do not have to download the app?
As I do not know what it looks like, I am just going to take a guess and supply you with one way of letting the user send feedback:
@Override
public boolean onCreateOptionsMenu(Menu menu){
super.onCreateOptionsMenu(menu);
MenuInflater hardwaremenu = getMenuInflater();
hardwaremenu.inflate(R.menu.main_menu, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item){
switch (item.getItemId()){
case R.id.sendEmail:
Intent Email = new Intent(Intent.ACTION_SEND);
Email.setType("text/email");
Email.putExtra(Intent.EXTRA_EMAIL, new String[] { "admin@hotmail.com" });
Email.putExtra(Intent.EXTRA_SUBJECT, "Feedback");
Email.putExtra(Intent.EXTRA_TEXT, "Dear ...," + "");
startActivity(Intent.createChooser(Email, "Send Feedback:"));
return true;
}
}
Either incorporate this into your existing menu or simply add this onto the bottom of the Activity that you would like to display the menu.
I hope this helps!

- 86,580
- 20
- 181
- 179

- 12,245
- 6
- 43
- 74
-
5That's a way to send an email with some feedback, for sure, but I hope there's a way to use the issue developer feedback feature from Android itself to gather feedback into the developer console, exactly like the G+ app does. – galex Aug 03 '12 at 06:55
-
Many Google apps use The question feedback style, usually with a screenshot. It would be great if they provided a way to do that too, as @galex Said, sending it to The developer console (at least it looks a lot like when you hit The "report" button in an n APP error) – George May 06 '16 at 22:32
If you really want to catch any unhandled Exceptions and submit them as Bug Reports to your own Site or a Google Docs Spreadsheet youu should have a look at ACRA (https://github.com/ACRA/acra/). It has an option to ask the user for written feedback before sending the Bugreport to you.
-
3That's not it either. I was there's a service to start with intent BUG_REPORT by decompiling the g+ app. This needs more investigation. – galex Aug 09 '12 at 08:03
-
@galex Have you found the proper intent/extras to support that way of reporting bugs? I would love to know, thanks :) – karni Jan 15 '13 at 19:25
Disclaimer: It's my own project
I'm currently working on this: http://www.android-feedback.com which ,I think, is what you are looking for. If you want to participate in the beta just leave your e-mail addr on the form.

- 2,762
- 1
- 24
- 31
-
Thanks for posting your answer! Please be sure to read the [FAQ on Self-Promotion](http://stackoverflow.com/faq#promotion) carefully. Also note that it is *required* that you post a disclaimer every time you link to your own site/product. – Andrew Barber Feb 23 '13 at 22:17
-
Its good, but a privacy policy would be nice. And please update your site's feedback too. I really don't want to send an email. A simple contact page with `area` could be better. :) – xmen Jun 17 '13 at 00:37
-
can u please answer this question http://stackoverflow.com/questions/26001170/show-dialog-of-android-feedback-com-library ? – Vivek Warde Sep 23 '14 at 17:32
-
-