我在TextViews中使用android:autoLink="web"
将URL转换为可点击的链接。这很管用。由于链接是用户生成的,我想事先用对话框询问用户,他们是否真的想打开这个链接。
我没有发现任何东西,在将其转发到典型的ACTION_VIEW
意图之前,有没有方法拦截该点击并显示对话框?
尝试添加到您的TextView属性中,如:
<TextView
android:text="http://www.google.com"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:autoLink="web"
android:onClick="onUrlClick"
android:linksClickable="false"
android:clickable="true"
/>
然后覆盖onClick方法,如:
public void onUrlClick(final View view) {
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
builder.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
TextView myTextView = (TextView)view;
String myUrl = String.valueOf(myTextView.getText());
Intent browse = new Intent( Intent.ACTION_VIEW , Uri.parse(myUrl) );
startActivity( browse );
}
});
builder.setNegativeButton("No", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
}
});
AlertDialog dialog = builder.create();
dialog.show();
}
它对我有效。这只是一个例子,为了良好的实践,您应该将创建与onClick方法分开。