次の例に従って、警告ダイアログの TextView の HTTP リンクをクリック可能にしようとしましたが、機能しません。
TextView のリンクをクリック可能にするにはどうすればよいですか?
それを機能させる唯一の方法は、リンクのテキストを文字列に直接入れandroid:autoLink="web"
て、TextView に入れることです。しかし、リンク全体を表示したくはありません。名前だけです。
私のダイアログが作成される場所は次のとおりです。
@Override
protected Dialog onCreateDialog(int id) {
LayoutInflater factory = LayoutInflater.from(this);
switch (id) {
case DISCLAIMER:
final View disclaimerView = factory.inflate(R.layout.disclaimer_dialog, null);
final TextView dtv = (TextView) disclaimerView.findViewById(R.id.disclaimer_body);
dtv.setText("v"+versionName+"\n\n\u00A9"+Calendar.getInstance().get(Calendar.YEAR)+" "+"Developer\n\n" +
getString(R.string.alert_dialog_disclaimer_body));
dtv.setMovementMethod(LinkMovementMethod.getInstance());
return new AlertDialog.Builder(MyActivity.this)
.setView(disclaimerView)
.setPositiveButton(R.string.alert_dialog_ok, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
}
})
.create();
}
return null;
}
ここにある私のTextViewは次のR.layout.disclaimer_dialog
とおりです。
<TextView
android:id="@+id/disclaimer_body"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:layout_marginBottom="10dp"
android:gravity="center"
/>
これが私の文字列リソースです:
<string name="alert_dialog_disclaimer_body">This application was developed and written by me.\n\nGraphs use AChartEngine licensed under <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License 2.0</a>.\n\nThe rest goes here.</string>