2014-02-20 58 views
-1

我正在用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> 

感謝

+0

爲什麼你給填寫家長的圖像視圖? 使用ScrollView .... – Namy

+0

與fill_parent和match_parent結果是相同的 – Charlie

+0

我知道.. BUt爲什麼你使用fill-parent/match-parent到你的imageview? – Namy

回答

-1

爲什麼你使用layout_height="fill_parent"imageview?請使用match_parentrelativeLayout附帶便利的屬性,例如layout_below , layout_above將我的答案與您的答案進行比較,您將看到不同之處。

<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="match_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:layout_below="@+id/imgDisplay" 
    /> 

    </RelativeLayout> 
+0

它無法正常工作。 textview不會出現。但如果我刪除android:layout_below textview出現在屏幕上 – Charlie

+0

@MayankSaini我猜你不知道什麼是match_parent和fill_parent是... OP:你用什麼軟件來編程android? – k0sh

+0

@ user3327667改爲使用imageview的wrap_content – k0sh

0

首先,我猜你沒有使用最新版本的TouchImageView。這裏是一個新的(1.0):

https://github.com/MikeOrtiz/TouchImageView/blob/master/src/com/example/touch/TouchImageView.java

結合一個LinearLayoutandroid:weightSum + android:layout_weight可以實現正是您要去使用這個。我也喜歡使用沿着ScrollViewTextView更長的文本(短文本不會受到它的影響):

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" 
    android:weightSum="3" > 

    <imagenes.TouchImageView 
     android:id="@+id/imgDisplay" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_weight="1" 
     android:contentDescription="@string/some_description" 
     android:scaleType="fitCenter" /> 

    <ScrollView 
     android:layout_width="fill_parent" 
     android:layout_height="match_parent" 
     android:layout_weight="2" 
     android:fillViewport="true" 
     android:scrollbars="vertical" > 

     <TextView 
      android:layout_width="fill_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" /> 
    </ScrollView> 

</LinearLayout> 

享受:)