我想为我的活动创建一个标题布局,如下图所示。 我试过但不能这样做。 任何人都可以帮助我吗?
答案 0 :(得分:0)
在 RelativeLayout 中的xaml文件中:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:id="@+id/my_imageView"
android:layout_width="100dp"
android:layout_height="100dp"
android:src="@drawable/my_drawable"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" />
<TextView
android:id="@+id/textView1"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_below="@+id/my_imageView"
android:layout_marginTop="4dp"
android:text="my text under image"
/>
</RelativeLayout>
TextView和ImageView必须包含在RelativeLayout中,因此layout_below才有效。