2017-04-03 32 views
0

TouchImageViewを使用して画像のズームイン/ズームアウトを行っています。しかし、TouchImageView.javaを追加してxmlでカスタムビューを作成すると、表示されませんでした。TouchImageViewがxmlに表示されない

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
android:orientation="vertical" android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:background="@color/cast_expanded_controller_background_color" 
android:id="@+id/Rlay"> 

<com.example.zhen.myggwpapp.TouchImageView 
    android:layout_height="350dp" 
    android:id="@+id/iv_preview_image" 
    android:layout_width="match_parent" 
    android:scaleType="matrix" 
    android:layout_centerVertical="true" 
    android:layout_alignParentStart="true" /></RelativeLayout> 

TouchImageView in xml showing only blue dot

答えて

1

あなたImageViewandroid:src:@drawable/some_imageを追加しようとする、またはそれの幅と高さを見るためにいくつかの背景を追加します。以下は私のxmlファイルです。 android:background="@color/some_color "

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
     xmlns:app="http://schemas.android.com/apk/res-auto" 
     android:orientation="vertical" android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:background="@color/color_white" 
     android:id="@+id/Rlay"> 

     <com.example.zhen.myggwpapp.TouchImageView 
      android:layout_height="350dp" 
      android:background="@color/color_black" 
      android:id="@+id/iv_preview_image" 
      android:src="@drawable/some_image" 
      android:layout_width="match_parent" 
      android:scaleType="matrix" 
      android:layout_centerVertical="true" 
      android:layout_alignParentStart="true" /> 

    </RelativeLayout> 
+0

ありがとうございます –

関連する問題