0

フォームベースのアプリケーションを開発しています。フォームには顧客の詳細が含まれています。彼が送信ボタンをクリックすると、フォームの詳細が電子メールの本文として含まれます。

以下は私のコードです:

Orders.java

import android.app.Activity;    
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

public class Order extends Activity{
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.order);
        final EditText name   = (EditText)findViewById(R.id.username);
        final EditText mail   = (EditText)findViewById(R.id.email);
        final EditText phone   = (EditText)findViewById(R.id.phone);
        final EditText product   = (EditText)findViewById(R.id.product);
        final String _name = name.getText().toString();
        final String _mail = mail.getText().toString();
        final String _phone = phone.getText().toString();
        final String _product = product.getText().toString();
        System.out.println(_name);
        System.out.println(_mail);
        System.out.println(_phone);
        System.out.println(_product);
        Button email = (Button) findViewById(R.id.Button01);
        email.setOnClickListener(new OnClickListener(){  
                  public void onClick(View v){
                  String[] recipients = new String[]{"b.gadwantikar1@gmail.com", "",};
                      StringBuilder body = new StringBuilder();
                      StringBuilder body1 = new StringBuilder();
                      body1.append("To: " + recipients);
                      body.append("Name: "+name.getText().toString());
                      body.append("\n\n\nMail: "+mail.getText().toString());
                      body.append("\n\n\nPhone: "+phone.getText().toString());
                      body.append("\n\n\nProduct: "+product.getText().toString());
                      Intent i = new Intent(android.content.Intent.ACTION_SEND);
                      i.setType("text/plain");
                      i.putExtra(android.content.Intent.EXTRA_EMAIL, body1.toString());
                      i.putExtra(android.content.Intent.EXTRA_SUBJECT, "Customer Details");
                      i.putExtra(android.content.Intent.EXTRA_TEXT, body.toString());
startActivity(i);
}
});
}
}

xmlファイルは次のとおりです。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >    

    <EditText
        android:layout_width="60dip"
        android:layout_height="wrap_content"
        android:id="@+id/edit"/>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/btn"
        android:text="Click"/>    
</LinearLayout>

プログラムで「from:」フィールドに指定されたメールIDを取得していますが、「to:」フィールドにそのIDが必要です...

4

2 に答える 2

1

StringBuilder文字列を管理するために使用する必要があります。メールはhtml形式である必要があるため、のようなhtmlでサポートされているクラスのメソッドを使用する必要がありますHtml.fromHtml(sb.toString());

文字列に追加してメール本文領域に送信するテキストをいくつか表示するだけで、そこにフォームを送信できます。

 public StringBuilder sb;
 sb= new StringBuilder();

   // This is Mail Format That will be show in Body area and send to be customer. 

   sb.append("<p><b><font color=\"#8CC248\">Title</b></p>");
   sb.append("<p><b><font color=\"#000000\">Dear,"+ edittextvalue in string mode +",</b></p>");

これをメールonClickイベントに送信します

Intent i2 = new Intent(android.content.Intent.ACTION_SEND);      
i2.setType("text/html");
i2.putExtra(android.content.Intent.EXTRA_TEXT,Html.fromHtml(sb.toString()));

出力を確認してください。

于 2012-11-29T10:28:46.933 に答える
1
StringBuilder body = new StringBuilder();
body.append("Name: "+nameField.getText().toString());
body.append("\nAge: "+ageField.getText().toString());
body.append("\nGender: "+genderField.getText().toString());

// Sending to admin
Intent i = new Intent(Intent.ACTION_SEND);
i.setType("text/plain");
i.putExtra(Intent.EXTRA_EMAIL, new String[] {"admin@gmail.com"} );
i.putExtra(Intent.EXTRA_SUBJECT, "Customer Details");
i.putExtra(Intent.EXTRA_TEXT, body.toString());
startActivity(i);
于 2012-11-29T10:36:35.880 に答える