This is my layout file by which I want to create a paragraph. i.e. The next sentence should start from the point where the previous ends up. But this ain't happen and the next sentence is coming in the next line. Actually I am going by an xml approach because each sentence is associated with database and has to be selected by user , so there is no choice by doing it using \n
.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<ScrollView
android:fillViewport="true"
android:id="@+id/q_area"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/question_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:padding="10dp"
android:text="Q1 : Select the right sentence out of these ?" />
<LinearLayout
android:orientation="vertical"
android:padding="10dp"
android:layout_below="@id/question_text"
android:layout_marginTop="25dp"
android:id="@+id/comprehension"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/sentence1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Reading comprehension is defined as the level of understanding of a text/message." />
<TextView
android:id="@+id/sentence2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This understanding comes from the interaction between the words that are written and how they trigger knowledge outside ." />
<TextView
android:id="@+id/sentence3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Proficient reading depends on the ability to recognize words quickly and effortlessly." />
<TextView
android:id="@+id/sentence4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Many educators in the USA believe that students need to learn to analyze text." />
<TextView
android:id="@+id/sentence5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="But other US educators consider this reading approach to be completely backward." />
</LinearLayout>
<TextView
android:id="@+id/explanation_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/comprehension"
android:layout_marginTop="25dp"
android:padding="10dp"
android:text="Explanation: Sentence you have selected is right?" />
<View
android:visibility="invisible"
android:id="@+id/user_optionset4"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/explanation_text"
android:layout_centerHorizontal="true"
android:layout_marginTop="50dp"
/>
</RelativeLayout>
</ScrollView>
<LinearLayout
android:background="@android:color/black"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" >
<Button
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="0.3"
android:gravity="center"
android:padding="0dp"
android:singleLine="true"
android:text="P"
android:textColor="@android:color/black" />
<Button
android:id="@+id/Take"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1.4"
android:gravity="center"
android:padding="0dp"
android:singleLine="true"
android:text="Done"
android:textColor="@android:color/white" />
<Button
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="0.3"
android:gravity="center"
android:padding="0dp"
android:singleLine="true"
android:text="N"
android:textColor="@android:color/black" />
</LinearLayout>
</RelativeLayout>
This is the current output :
Expected output , the next sentence should start at the position of yellow arrows , as shown in the image :
tag ?? – Zax Aug 12 '13 at 07:14