5

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 以降のバージョンでアプリを実行しています。

助けてください...ありがとう

4

2 に答える 2

14

これは、モバイルにプライマリ アカウントを追加していない場合に発生する可能性があります。デバイスで Google アカウントを設定する必要があります。デバイスで Gmail アプリに移動し、Gmail アカウントを使用してサインインします。私は同じ問題を抱えていましたが、これを行った後、問題は解決しました。

于 2013-01-09T09:21:24.673 に答える