xml で TextView への電子メール リンクを提供しましたが、TextView をクリックすると、サポートされていないアクション エラーが表示されます。
string.xml ファイルの私のコードは次のとおりです。
<resources>
<string name="emailLink"><a href="mailto:info@knowledgewoods.in">info@knowledgewoods.in</a></string>
<resources>
そして mylayout.xml
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="15dp"
android:textColor="@color/text_color"
android:layout_marginTop="10dp"
android:id="@+id/text_email"
android:autoLink="email"
android:text="@string/emailLink"/>
Android 2.2 以降のバージョンでアプリを実行しています。
助けてください...ありがとう