Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
Carrentals_james_clarke
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
james.clarke2
Carrentals_james_clarke
Commits
694311f8
Commit
694311f8
authored
May 19, 2020
by
james.clarke2
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add new file
parent
e093a922
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
0 deletions
+42
-0
Feedback.java
Feedback.java
+42
-0
No files found.
Feedback.java
0 → 100644
View file @
694311f8
package
com
.
example
.
carrentals
;
import
androidx.appcompat.app.AppCompatActivity
;
import
android.content.Intent
;
import
android.os.Bundle
;
import
android.view.View
;
import
android.widget.Button
;
import
android.widget.EditText
;
import
android.widget.Toast
;
public
class
Feedback
extends
AppCompatActivity
{
@Override
protected
void
onCreate
(
Bundle
savedInstanceState
)
{
super
.
onCreate
(
savedInstanceState
);
setContentView
(
R
.
layout
.
activity_feedback
);
final
EditText
edit1
=
(
EditText
)
findViewById
(
R
.
id
.
edit1
);
final
EditText
edit2
=
(
EditText
)
findViewById
(
R
.
id
.
edit2
);
Button
btn
=
(
Button
)
findViewById
(
R
.
id
.
ButtonFeedback
);
btn
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
v
)
{
Intent
i
=
new
Intent
(
Intent
.
ACTION_SEND
);
i
.
setType
(
"message/html"
);
i
.
putExtra
(
Intent
.
EXTRA_EMAIL
,
new
String
(
"xyjz@gmail.com"
));
i
.
putExtra
(
Intent
.
EXTRA_SUBJECT
,
"Feedback"
);
i
.
putExtra
(
Intent
.
EXTRA_TEXT
,
"Name;"
+
edit1
.
getText
()
+
"\n Message:"
+
edit2
.
getText
());
try
{
startActivity
(
Intent
.
createChooser
(
i
,
"Please select Email"
));
}
catch
(
android
.
content
.
ActivityNotFoundException
ex
)
{
Toast
.
makeText
(
Feedback
.
this
,
"There is no Email"
,
Toast
.
LENGTH_SHORT
).
show
();
}
}
});
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment