fragment_camera.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">
<ImageView
android:id="@+id/iv_camera"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true" >
</ImageView>
<Button
android:id="@+id/btn_take_pic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="20dp"
android:background="@drawable/circle" >
</Button>
</RelativeLayout>
circle.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid
android:color="#87cefa"/>
<size
android:width="40dp"
android:height="40dp"/>
</shape>
结果:
我的圈子被压扁了*哭*。
由于按钮不包含任何内容,我猜这个按钮有一个默认的宽度和高度。如何让按钮调整为可绘制的?我必须将宽度和高度设置为与drawable相同的尺寸,还是有动态的方式来做到这一点?
答案 0 :(得分:-1)
停止哭泣。使用复合drawable
对于西方人来说可能是drawableLeft
,对于中东方人来说是drawableRight
(这实际上取决于你希望你的图像和文字是如何相关的 - 你甚至可以同时使用它们)。 />
http://developer.android.com/guide/topics/ui/controls/button.html