2015-09-09 50 views

回答

1

只需使用

   android:background="@drawable/your_rectangle_xml_file" 
+0

請考慮將其標記爲正確的,如果這是你需要的東西。 –

+0

我希望ImageView和按鈕具有與背景相同的矩形。這可行嗎? –

+0

是的,只需在所有圖像瀏覽和按鈕中添加矩形xml作爲背景。如果它不工作發佈您的代碼,我會幫助你。 –

0

在繪製

<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android" > 
<corners 
    android:bottomLeftRadius="5dp" 
    android:bottomRightRadius="5dp" 
    android:topLeftRadius="8dp" 
    android:topRightRadius="8dp" /> 
</shape> 

和youractivity.xml創建shame.xml

<Button 
    android:id="@+id/btn_Shap" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="@string/Shape" 
    android:background="@drawable/shape"/> 
1

創建繪製文件夾rectangle.xml和粘貼代碼

<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
android:paddingLeft="20dp" 
android:shape="rectangle"> 
<solid android:color="#000000"></solid> 
<corners 
    android:bottomLeftRadius="@dimen/_5dp" 
    android:bottomRightRadius="@dimen/_5dp" 
    android:topLeftRadius="@dimen/_5dp" 
    android:topRightRadius="@dimen/_5dp" 
    ></corners> 
</shape> 

後,在你的活動把它作爲像

<Button 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="Your text" 
    android:textColor="#ffffff" 
    android:textAllCaps="false" 
    android:background="@drawable/rectangle"/> 
<ImageView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:src="your image " 
    android:background="@drawable/rectangle"/> 
相關問題