這是我想要創建段落的佈局文件。即下一句應該從前一句結束的地方開始。但是這不會發生,下一句將在下一行中出現。實際上,我正在採用xml方法,因爲每個句子都與數據庫相關聯,並且必須由用戶選擇,因此使用\n
來做沒有選擇。使用xml佈局使用多個textview創建一個段落
<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>
這是電流輸出:
預期輸出,下一個句子應該在黃色箭頭的位置開始,如圖所示:
可你嘗試
標籤? – Zax