我試圖給一個圖像視圖邊框,使用佈局來包裹它並將邊框設置爲該特定佈局的背景。然而,圖像視圖看起來很小,並且在框架背景的左上角。帶邊框的圖像,顯示不正確
這裏是我的代碼:
<RelativeLayout
android:id="@+id/Relative1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="25dp"
android:layout_marginTop="40dp"
android:background="@drawable/pic_frame_big_01" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" />
</RelativeLayout>
使圖像適合相對佈局並佔有它我怎麼能修改此代碼。
編輯更改了ImageView的代碼,現在圖像居中,但它看起來像是一個以父級爲中心的非常小的圖像。
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />
將一些圖像設置爲'src'到圖像視圖。現在它是空的! –