I have created a Button and a TextView that contains a sentence. Is it possible to have the Button in the sentence?
For Example
Click this Button to go to next page.
Or would you have finish the sentence and put the Button after?
Button and TextView
<Button
android:id="@+id/btnNextPage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="onClick"
android:text="Next Page"/>
<TextView
android:id="@+id/txtNextPage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click here to go to next page."/>