- 我有一个
listview
, 有一个imageview
可以垂直滚动的 - 我正在尝试将 a
textview
放在Imageview
- 两个视图都必须可见
- 可能吗 ?
- 如果是,如何以编程方式进行?
- 我需要做哪些改变?
list_view_item_for_images.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android:id="@+id/flag"
android:layout_width="fill_parent"
android:layout_height="250dp"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:scaleType="fitXY"
android:src="@drawable/ic_launcher" />
</RelativeLayout>
它给出如下输出
如何执行以下操作
注意:: Dish 1 & 2 是 textviews