2012-11-30 69 views
1

我發送郵件使用意向從Android應用程序,但我的CSS不加載。有人可以幫我加載CSS的請。我在哪裏錯了。我堅持了這個愚蠢的選擇持續了幾個小時。Android發送電子郵件與CSS嵌入式

這裏是我的部分。

<div style="background:"+String.format(hex,colors.get(position).hex)"></div> ...

回答

3

我有同樣的問題,並且不可能解決它。 我不認爲它有可能發送與默認的電子郵件客戶端的CSS(糾正我,如果我錯了)。

我的工作是發送html作爲附件。

見: Is it possible to send html with the mail intent?

編輯: 我這裏是我是如何做的:

  • 保存HTML作爲文件..
  • 你添加附件烏里列表對象
  • 請參閱以下代碼如何創建與附件的郵件意圖..

    final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND_MULTIPLE); 
        emailIntent.setType("text/html"); 
        emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "title"); 
    
        emailIntent.putExtra(Intent.EXTRA_TEXT, "email body text"); 
        emailIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris); 
        startActivity(Intent.createChooser(emailIntent, "Email:")); 
    
+0

你是如何做到這一點的? – Dimitri

相關問題