我尝试按照以下示例在我的警报对话框中的 TextView 中创建一个 HTTP 链接,但它不起作用:
我可以让它工作的唯一方法是将链接的文本直接放入我的字符串并放入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>