I have a long text in TextView like "Hello How Are You \nThis Is my 'Second Activity'.". I want to make only 'Second Activity' text to clickable.
I am using TextView in ScrollView Like this:
<ScrollView android:id="@+id/scrollView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/gold_btn" android:orientation="vertical"><TextView android:id="@+id/text1" android:layout_width="match_parent" android:layout_height="wrap_content" android:textColor="#FFEFFF" android:text="" android:textSize="23sp"/></ScrollView>
and setting text in code using text1.setText("Hello How Are You This Is my Second Activity"); and i want to make "Second Activity" text to clickable and when user click on "Second Activity" text than another activity will open.
String is very long and have new lines also.