我想问一个不同布局的按钮

时间:2015-11-15 15:48:52

标签: android xml android-layout

请原谅我的英文不好,我会问为什么RelativeLayout中的按钮在按下时是灰色的,LinearLayout没问题

from django.apps import apps
Model = apps.get_model(app_label='your_app_name', model_name=table_name)

1 个答案:

答案 0 :(得分:0)

如果您设置了颜色,它将不会变灰。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <Button
        android:background="#4b14b1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="add"
        android:text="button" />

</RelativeLayout>