在android中,
我想制作文本,因为有一个数字,当我点击号码时,呼叫将自动完成。当我点击号码时,应该打开呼叫窗口
在这里你可以看到有粗体文字和纯文本,还有一个数字,当我点击该数字时会突出显示它将调出活动
例如下面是图片
在这里你可以看到有粗体文字和纯文本,还有一个数字,当我点击该数字时会突出显示它将调出活动
答案 0 :(得分:2)
您可以通过以下代码执行此操作,它已成功运行
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
WebView webView = (WebView)findViewById(R.id.webView);
webView.loadData("<html>Please use the form below to request a specific day and time for your pet’s appointment.<br> <b>Please Note: </b> For same day appointment requests, please call: (215) 884-0453<a href=\"tel:2125551212\">2125551212</a></html>", "text/html", "utf-8");
webView.setWebViewClient(new InternalWebViewClient());
}
private class InternalWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if (url.indexOf("tel:") > -1) {
startActivity(new Intent(Intent.ACTION_DIAL, Uri.parse(url)));
return true;
} else {
return true;
}
}
}
}
答案 1 :(得分:0)
使用webView。您需要的所有内容都将由webView自动完成。 这将帮助您一次调用/映射视图/ Url打开功能,而无需在代码中定义静态值。
如果你得到一些字符串值,有或没有一些html标签,那么你可以使用下面提到的:
WebView wv = (WebView)rootView.findViewById(R.id.go_web_view);
wv.getSettings().setJavaScriptEnabled(true);
wv.loadDataWithBaseURL(null, description, "text/html", "utf-8", null);
// Here "description" is your string
你xml文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/hsf"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/white"
>
<include layout="@layout/header"/>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ImageView
android:id="@+id/go_large"
android:layout_width="360dp"
android:layout_height="195dp"
android:src="@drawable/image_not_available"
android:gravity="center" />
<TextView
android:layout_marginTop="20dp"
android:id="@+id/go_excert"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="20sp"
android:textStyle="bold"
android:layout_marginLeft="6dp"
/>
<LinearLayout
android:layout_marginTop="15dp"
android:layout_marginBottom="15dp"
android:layout_width="match_parent"
android:layout_height="2dp"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:background="@color/grey" >
</LinearLayout>
<WebView
android:id="@+id/go_web_view"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</ScrollView>
</LinearLayout>
干杯!