Button按钮的背景阴影

现象:给button添加shape背景,会出现有阴影

<Button
    android:id="@+id/bt_manage_add"
    android:layout_width="match_parent"
    android:layout_height="@dimen/y88"
    android:layout_marginRight="@dimen/x115"
    android:layout_marginLeft="@dimen/x115"
    android:text="添加新地址"
    android:textColor="@drawable/btn_start_textcolor_selsector"
    android:layout_centerInParent="true"
    android:background="@drawable/address_btn_bg_conner"
    android:gravity="center"
    android:textSize="@dimen/x34"
    />

原因是因为:button本身具有点击事件效果,所有把button换成TextView即可

猜你喜欢

转载自blog.csdn.net/fuweng886/article/details/84103109