<ScrollView
android:id="@+id/id_scrollview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true"
android:paddingTop="@dimen/_5sdp"
android:paddingBottom="@dimen/_5sdp">
<LinearLayout
android:id="@+id/id_main"
android:layout_width="wrap_content"
android:gravity="center_vertical"
android:layout_height="match_parent"
android:background="#ffffff"
android:paddingLeft="@dimen/_10sdp"
android:orientation="vertical">
<LinearLayout
android:id="@+id/id_test"
android:layout_width="wrap_content"
android:gravity="center_vertical"
android:layout_height="match_parent"
android:background="#ffffff"
android:paddingLeft="@dimen/_10sdp"
android:orientation="vertical">
<TextView
android:id="@+id/id_key_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight=".5"
android:text="@string/key_tv"
android:textStyle="bold"
android:paddingLeft="@dimen/_10sdp"
android:layout_marginRight="@dimen/_15sdp"/>
<TextView
android:id="@+id/id_value_tv"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="15sp"
android:background="#ffffff"
android:gravity="center_vertical"
android:paddingTop="@dimen/_10sdp"
android:paddingLeft="@dimen/_10sdp"/>
</LinearLayout>
</LinearLayout>
</ScrollView>
代碼片段解析網址:超鏈接在滾動視圖裏面的TextView無法點擊
Intent showDocumentInBrowserIntent = new Intent(Intent.ACTION_VIEW);
showDocumentInBrowserIntent.setData(Uri.parse(clickedItemInViewSanctioned.getmValue()));
startActivity(showDocumentInBrowserIntent);
我想添加超鏈接(例如URL)至TextView
(id_value_tv)不幸的是這個鏈接不起作用。
請誰能告訴我問題在這裏? 謝謝。
請參考以下鏈接: - HTTP:/ /stackoverflow.com/a/42671603/3946958 –
@Ramya BA你可以使用onclick監聽器。 –
請發佈代碼,在其中設置包含TextView超鏈接的文本。 – iMDroid