我正在嘗試設(shè)置默認(rèn)電子郵件地址,將存儲來自我的 android 應(yīng)用程序的反饋,我可以讓他們閱讀。但是,我無法做到。另外,您能否建議我其他更好的方法來存儲來自您的應(yīng)用程序用戶的反饋,以便我以后閱讀?這是我的代碼:活動_main.xml<RelativeLayout android:layout_width="match_parent" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="match_parent"> <Button android:id="@+id/feedback" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="10dp" android:text="@string/feedback" android:textColor="#26A69A" /></RelativeLayout>反饋文件<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="#D0ECE7 " android:orientation="vertical"> <TextView android:layout_width="match_parent" android:layout_height="54dp" android:paddingLeft="10dp" android:paddingRight="10dp" android:text="@string/ftitle" android:textColor="#26A69A" android:textSize="30sp" android:textStyle="bold" /> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="10dp" android:layout_marginRight="10dp" android:layout_marginTop="10dp" android:text="@string/feed" android:textSize="20sp" android:textStyle="bold" /> <EditText android:id="@+id/editText" android:layout_width="match_parent" android:layout_height="62dp" android:layout_marginLeft="10dp" android:layout_marginRight="10dp" android:ems="10" android:hint="Write Here" android:background="#ffffff" android:inputType="textPersonName" android:textColor="#26A69A" android:textColorLink="#26A69A" />
3 回答

慕田峪7331174
TA貢獻(xiàn)1828條經(jīng)驗 獲得超13個贊
一個簡單的解決方案是使用具有以下屬性的TextView
in aNavigation Drawer
或 in an About activity
:
android:autoLink="email" android:text="youremail@host.com"
有了這個,用戶只需點擊您的電子郵件,郵件應(yīng)用程序就會啟動...
至于其他部分,請確保您不要泄露您的個人電子郵件。
最好使用專業(yè)電子郵件或?qū)iT針對該應(yīng)用程序的電子郵件。
添加回答
舉報
0/150
提交
取消