这是我想要创建段落的布局文件。即下一句应该从上一句结束的地方开始。但这不会发生,下一句将在下一行出现。实际上我是通过 xml 方法进行的,因为每个句子都与数据库相关联并且必须由用户选择,所以没有选择使用\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>
这是当前输出:
预期的输出,下一句应该从黄色箭头的位置开始,如图所示: