ローカルリンクのように動作するテキストフィールドがあります。クリックすると、データベースからイメージがフェッチされて表示されます。常にサーバーにpingを実行しません。ここでandroid TextView:クリック時のテキストの色を変更する
ただ、質問私はテキストビューの色を見たいと思っているが、代わりに同じ黒い色の、黄色に変更する必要があります
テキストビュー
<TextView android:layout_marginLeft="2dp" android:linksClickable="true"
android:layout_marginRight="2dp" android:layout_width="wrap_content"
android:text="@string/Beatles" android:clickable="true" android:id="@+id/Beatles"
android:textColor="@color/Black"
android:textSize="12dp" android:layout_height="wrap_content" android:textColorHighlight="@color/yellow" android:textColorLink="@color/yellow" android:autoLink="all"></TextView>
のためのXMLコードでありますボタンの振る舞いと同じですが、背景の色を変更する代わりに、私はテキストの色を変更したい
ます。https:// stackoverflowの
この効果を達成するために、私は別のファイルに自分のonTouchListenerを実装しました.com/questions/5371719/change-clickable-textviews-color-on-focus-and-click – CoolMind