好的,再次,我在學習android的同時,在我的頭上。在最終開發我的簡單小應用程序後,我嘗試使用具有本機應用程序的一些好處。Android應用程序通過電子郵件發送圖像
所以,項目一個,做一個網頁,其中可以通過電子郵件(無論是從畫廊或照相機)將圖像發送
本質上它是一個選擇,並通過電子郵件發送,但我甚至不知道從哪裏開始。
我發現了一些其他人在詢問的代碼; Android App Take/ Email Photo
我嘗試這樣做,但得到的各種錯誤,從蝕,再接種到downloadedPic部分。
如果有人可以請看看,並告訴我最好的方式來做到這一點,那將是驚人的。像往常一樣,對不起,我beginers愚蠢,但我想每個人都有學習的地方
THIS IS MY .JAVA目前
public class Photos extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_photos);
getActionBar().setDisplayHomeAsUpEnabled(true);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_photos, menu);
return true;
}
THIS IS MY .XML目前
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Please chose the options below to select and upload photos into the
DCC for the selected project..."
tools:context=".Photos"
android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>
它應該是附件或身體區域? –
附件請:)如果可能的話...... –
如果你能解釋每個部分在代碼中的作用,那將是驚人的! –