블로그   태그   위치로그   이웃로그   방명록
          
 
 
11-26 00:55
 
 
     
 
  안드로이드 xml의 이미지뷰 한가운데 텍스트뷰 넣기 Android TextView over ImageView  +   [카테고리 없음]   |  2013. 8. 13. 00:41



<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/relativelayout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" > //랠러티브 레이아웃 생성

    <ImageView
        android:id="@+id/myImageView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/myImageSouce" /> //이미지뷰 생성

    <TextView
        android:id="@+id/myImageViewText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@id/myImageView"
        android:layout_alignTop="@id/myImageView"
        android:layout_alignRight="@id/myImageView"
        android:layout_alignBottom="@id/myImageView"
        android:layout_margin="1dp"
        android:gravity="center"
        android:text="Hello"
        android:textColor="#000000" /> //정렬을 상하좌우 이미지뷰에 맞춘다.

</RelativeLayout>


해당 소스는 오직 랠러티브 레이아웃에서만 된다.

출처 : http://stackoverflow.com/questions/5242951/android-text-over-image




 
  
 
   

데드캣's Blog is powered by Daum & tistory