I have two text-view with two colors
- "qwer tyu iopasd fgh jkl zxcv bnm" and
- "123456789"
I want to like to design the text view one after for example next to the "qwer tyu iopasd fgh jkl zxcv bnm"it display without any space"123456789" if the first textview go to about 2 to 3 lines then what to do?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="qwer tyu iopasd fgh jkl zxcv bnm"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="123456789"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>