我想在我的应用程序中添加一些机票预订链接。如何添加?我使用webview在浏览器中打开链接。但这是正确的吗?
答案 0 :(得分:1)
您只需使用 TextView 在您的应用中添加链接即可。
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/link_to_google"
/>
要使您的字符串成为链接,请在例如String.xml ..
中添加您的字符串 <string name="link_to_google"><a href="http://www.google.com">Go to
Google</a></string>
最后,在您的textView上调用setMovementMethod
TextView textView =findViewById(R.id.textView);
textView.setMovementMethod(LinkMovementMethod.getInstance());