我正在用Mike Ortiz的TouchImageView製作一個應用程序。這些作品與中央到全屏的圖像一致。但是我想在每張圖片下面添加一個帶有圖片描述的textview。但是我不能。圖像移動和textview並不總是出現在圖像下方。這是我的xml:Android:Textview下面ImageView中的TouchImageview
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<imagenes.TouchImageView
android:id="@+id/imgDisplay"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitCenter" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="text"
android:textSize="14sp"
android:textStyle="italic"
android:textColor="@color/blanco"
android:gravity="bottom"
android:layout_marginTop="3dp"
android:layout_marginRight="2dp"/>
</RelativeLayout>
感謝
爲什麼你給填寫家長的圖像視圖? 使用ScrollView .... – Namy
與fill_parent和match_parent結果是相同的 – Charlie
我知道.. BUt爲什麼你使用fill-parent/match-parent到你的imageview? – Namy