我需要一些关于我在几周前使用在线源代码和一些小游戏创建的当代艺术画廊应用程序的帮助。一切正常,但现在我们正在向关于艺术家的页面添加更多艺术家,但出现了问题。当我添加更多文本时,它会聚在一起并尝试将其全部放入一个屏幕中。相关代码如下。我认为布局设置很简单,但似乎并非如此。
如果有人可以提供帮助,我将不胜感激。
谢谢,乔纳森
如果您需要下载它,可以在 Flaneur Art Gallery 下的 Google Play 上下载。
<?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>