リンクがテキスト文字列内で認識されるように、リンクを追加するテキストビューを含む Eula ダイアログがあります。私は dpad ナビゲーションを使用しており、フォーカスがある場合はリンクを強調表示する必要があります。リンク onFocus に状態を追加する方法はありますか? プラス ボタンとマイナス ボタンにもフォーカスを向けることはできますか? メソッドは次のとおりです。
public static boolean show(final Activity activity) {
final SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(activity);
if (!preferences.getBoolean(ACCUWX.Preferences.PREFERENCE_EULA_ACCEPTED, false)) {
final TextView message = new TextView(activity);
final SpannableString s = preferences.getString(ACCUWX.Preferences.PREF_PARTNER_CODE, null).equals(ACCUWX.PartnerCodes.TMOBILE_PARTNER_CODE)
|| preferences.getString(ACCUWX.Preferences.PREF_PARTNER_CODE, null).equals(ACCUWX.PartnerCodes.TMOBILE_7_PARTNER_CODE)?
new SpannableString(activity.getText(R.string.eula_terms_info_tmobile))
: new SpannableString(activity.getText(R.string.eula_terms_info));
Linkify.addLinks(s, Linkify.WEB_URLS);
message.setPadding(10, 10, 10, 10);
message.setText(s);
message.setMovementMethod(LinkMovementMethod.getInstance());
if (ad == null) {
ad = new AlertDialog.Builder(activity)
.setTitle(R.string.terms_conditions)
.setCancelable(false)
.setPositiveButton(R.string.agree, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
accept(preferences);
if (activity instanceof OnEulaAgreedTo) {
((OnEulaAgreedTo) activity).onEulaAgreedTo();
}
}
})
.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
refuse(activity);
}
})
.setOnCancelListener(new DialogInterface.OnCancelListener() {
public void onCancel(DialogInterface dialog) {
refuse(activity);
}
})
.setView(message)
.create();
ad.show();
}
return false;
}
return true;
}
txt 内にあり、独自の別のビューではないリンクに状態を追加する方法がわかりません。
*****編集***** このコード行を追加すると: message.setLinkTextColor(R.color.link_text); その後、私のリンクは表示されません。しかし、これは少なくともリンクを認識していることを示しています。res/color に保存されている適用済みの ColorStateList (link_text.xml) を次に示します。
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
android:color="#ff0000"/> <!-- pressed -->
<item android:state_focused="true"
android:color="#ff33ff"/> <!-- focused -->
<item android:color="#00ff00"/> <!-- default -->
</selector>
スクリーンショットは次のとおりです。