如何在我的Android应用程序中添加某人的网站链接?

时间:2019-06-06 08:16:38

标签: java android android-layout

我想在我的应用程序中添加一些机票预订链接。如何添加?我使用webview在浏览器中打开链接。但这是正确的吗?

1 个答案:

答案 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());