2011-07-04 35 views
0

你好,我使用下面的XML創建某種透明面板。我面臨的問題是,背景圖片ac放大,我的意思是它的高度增加,另一件事我想知道我怎麼能把這個框架在中間,並調整其寬度。我按照this例如使用Framelayout製作面板

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"> 

    <ImageView 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 

     android:scaleType="center" 
     android:src="@drawable/ac" /> 

    <TextView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_marginBottom="20dip" 
     android:layout_gravity="center_horizontal|bottom" 

     android:padding="12dip" 

     android:background="#AA000000" 
     android:textColor="#ffffffff" 

     android:text="test test test" /> 

</FrameLayout> 

回答