android形状不会改变大小

时间:2014-09-10 11:45:37

标签: android android-xml android-styles

请帮助我在Android上进行布局。

flat_btn_hover.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <gradient
        android:startColor="#f45d5d"
        android:centerColor="#f45d5d"
        android:endColor="#f45d5d"/>
    <size android:height="@dimen/activity_bottom_height_hover"/>

    <stroke
        android:width="2dp"
        android:color="#f45d5d"/>
</shape>

flat_btn_bt_normal.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <gradient
        android:startColor="#232323"
        android:centerColor="#232323"
        android:endColor="#232323"/>
    <size android:height="@dimen/activity_bottom_height"/>
    <stroke
        android:width="1dp"
        android:color="#3e3e3e"/>
</shape>

flat_btn_bt.xml:

<?xml version="1.0" encoding="utf-8"?>

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_focused="true" android:state_pressed="false" android:drawable="@drawable/flat_btn_bt_normal" />
    <item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/flat_btn_bt_normal" />
    <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/flat_btn_hover" />
    <item android:drawable="@drawable/flat_btn_bt_normal"/>
</selector>

然后,我设置Button的背景:

<Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/flat_btn_bt"/>

但是在工作时,它会改变颜色并且不会改变尺寸布局。 你能告诉我如何改变大小吗?

1 个答案:

答案 0 :(得分:2)

默认情况下,形状会缩放到容器视图的大小。视图与此处定义的尺寸成比例。

删除您的尺寸属性