为什么超级链接在使用后无法正常工作,如下所示

时间:2018-12-07 06:24:20

标签: android-studio

我正在为我的Android应用程序使用超链接。我给这样的代码后,那是行不通的。它在我将链接作为字符串的文本提供的过程中起作用。所以我需要解决方案

  Tnc =  findViewById(R.id.tnc);
    Tnc.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
       Tnc.setMovementMethod(LinkMovementMethod.getInstance());
    }
    });

字符串:

<string name="tremlink"> "<a 
href="https://mionbang.com/textail/v1/privacy_policy.html">Terms and 
Conditions</a>"</string>

XML:

       <TextView
            android:id="@+id/tnc"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:autoLink="all"
            android:gravity="center"
            android:linksClickable="true"
            android:text="@string/tremlink"
            android:textColor="@android:color/holo_blue_bright" />

0 个答案:

没有答案