我需要一些當前藝術畫廊應用程序的幫助,這是我在幾個星期前從在線源代碼和一些jiggery-pokery創建的。這一切都行得通,但現在我們正在爲藝術家頁面添加更多藝術家,並且存在問題。當我添加更多的文本時,它會聚集起來,並嘗試將其全部放入一個屏幕中。相關代碼如下。我認爲這是佈局設置很簡單,但它似乎沒有。Android Eclipse - 如何讓頁面向下滾動並顯示更多文字
如果有人能幫助我,我會非常感激。
感謝, 喬納森
如果您需要下載它,它可以用谷歌下漫遊者美術館播放。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<Button
android:id="@+id/buttonBack"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Back"/>
<TextView
android:layout_width="316dp"
android:layout_height="wrap_content"
android:layout_weight="0.03"
android:gravity="top|left"
android:text="About the artists:"
android:textSize="15dp" />
<TextView
android:layout_width="316dp"
android:layout_height="wrap_content"
android:layout_weight="0.03"
android:gravity="top|left"
android:text="RUTH SCOTT is painter who has finally been released from a desk job and can't wait to make the most of her abilities. \nARTISTX is a conceptual artist with an interest in food.\nMELANIE PHELAN creates bold and seductive pieces with a sense of strength, positivity and humour, based on the aesthetic ideal of women portrayed in mass media."
android:textSize="12dp" />
</LinearLayout>
add你想要的地方 –