程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-在 Button 上添加 image 時,如何不使 image 緊靠在 Button 左邊

android-在 Button 上添加 image 時,如何不使 image 緊靠在 Button 左邊

編輯:編程綜合問答
在 Button 上添加 image 時,如何不使 image 緊靠在 Button 左邊

給 Button 上添加 image 的時候如何在 image 的左邊加空間,使得 image 左邊不會緊靠在Button 的左邊。
我使用的下面的代碼,效果圖是這樣的:
CSDN移動問答

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="45dp"   
    android:orientation="horizontal" >

           <Button   android:id="@+id/MyAccountbutton"
             style="?android:attr/buttonStyleSmall"
             android:layout_height="25dip"
                android:layout_width="fill_parent"
                android:layout_marginRight="35dip"
                android:layout_marginLeft="35dip"
            android:drawableLeft="@drawable/Handshake"
            android:background="@drawable/curvedplanebutton"
            android:textColor="@drawable/button_text_color"
            android:layout_marginTop="15dip"
            android:text="Payments"/>
           </LinearLayout>

我想實現的是這樣的效果:
CSDN移動問答

就是讓 Button 上的 image 不要緊靠在 Button 的左邊,留點空間。如何實現呢?

最佳回答:


可以加drawablePadding屬性

但這樣drawable的四邊都會出現相同的間距,代碼中不知道可不可以只設置左邊的padding

最好的方法是:不要在button上加drawable,而是在你的linearLayout裡面再加一個

將圖片單獨放,這樣就很好調整了,想怎麼調就怎麼調

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved