• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

E-mail Button Help.

Hello all and Thank You in advance for any and all help.

I am trying to create an app where people will fill in some basic information and then send that information to my E-mail. This is my first app so I am very confused. I have zero Java or Android experience. Again Thank You for the help. santacruzdougie@comcast.net is my E-mail


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_weight="1">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<EditText android:layout_height="wrap_content" android:layout_width="fill_parent" android:inputType="textPersonName" android:hint="Name" android:id="@+id/editName">
<requestFocus></requestFocus>
</EditText>
<EditText android:layout_height="wrap_content" android:layout_width="fill_parent" android:inputType="phone" android:hint="Phone" android:id="@+id/editPhone"></EditText>
<EditText android:layout_height="wrap_content" android:layout_width="fill_parent" android:inputType="textEmailAddress" android:hint="E-mail" android:id="@+id/editEmail"></EditText>
<EditText android:layout_height="wrap_content" android:layout_width="fill_parent" android:hint="Make" android:id="@+id/editMake"></EditText>
<EditText android:layout_height="wrap_content" android:layout_width="fill_parent" android:hint="Model" android:id="@+id/editModel"></EditText>
<EditText android:layout_height="wrap_content" android:layout_width="fill_parent" android:hint="Error Code" android:id="@+id/editError"></EditText>
<EditText android:layout_height="wrap_content" android:layout_width="fill_parent" android:inputType="textMultiLine" android:hint="Anything else you may like to add." android:layout_weight="1" android:gravity="top|center" android:maxLines="10" android:lines="10" android:id="@+id/editWords"></EditText>


<Button android:layout_height="wrap_content"

android:layout_width="fill_parent"
android:text="SUBMIT"
android:id="@+id/submit">

</Button>

</LinearLayout>
</ScrollView>

</LinearLayout>
 
Back
Top Bottom