我已经定义了一个包含 a TextView
、 anImageView
和 a的布局Button
。
在 xml 文件中,我尝试使用 LinearLayout 来包含这些视图。这可以正常工作(我可以看到 my TextView
then my ImageView
then my Button
),但有时TextView
太长了,我看不到 myImageView
和 my Button
。
我试过RelativeLayout
了,但没有产生预期的结果。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/splash" >
<TextView
android:id="@+id/storybox"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:autoLink="all"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:text="Texte"
android:textAlignment="center"
android:textColor="#FFFFFF"
android:textSize="20px" />
<ImageView
android:id="@+id/ivImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Images"
android:onClick="onButtonDownUpActivityClick" />
</LinearLayout>