我想创建一个Button
它的一部分图标放在它之外,像这样:
但是,使用这个 xml 布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_gravity="right"
android:descendantFocusability="afterDescendants"
android:gravity="right"
android:orientation="vertical" >
<TextView
android:id="@+id/label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:gravity="right"
android:textSize="40sp"
android:focusableInTouchMode="false"
android:clickable="false"
android:focusable="false" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/btn_background" >
<Button
android:id="@+id/delete_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:background="@drawable/delete_btn"
android:drawableRight="@drawable/delete"
android:text="delete" />
<Button
android:id="@+id/button3"
android:background="@drawable/delete_btn"
android:drawableLeft="@drawable/share"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:text="share" />
<Button
android:id="@+id/like_btn"
android:background="@drawable/delete_btn"
android:drawableRight="@drawable/like"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginRight="15dp"
android:layout_toLeftOf="@+id/delete_btn"
android:text="like" />
</RelativeLayout>
</LinearLayout>
我得到这样的东西:
是否有可能的图像Button
越过边界?
谢谢
更新:
删除_btn.xml:
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke android:width="1dp" android:color="#F2F2F2" />
<padding android:left="7dp" android:top="1dp"
android:right="7dp" android:bottom="1dp" />
<corners android:radius="34dp" />
<solid android:color="#F2F2F2"/>
</shape>