问题描述
- android Button 颜色或者背景的问题
-
Button 颜色问题,我做出来是这个
<LinearLayout 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:orientation="vertical" > <LinearLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:orientation="horizontal" > <LinearLayout android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:background="#FF0000" > </LinearLayout> <LinearLayout android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="2" android:background="#00FF00" > </LinearLayout> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:background="#0000FF" > <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" > <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:background="#BDBDBD" android:text="我是按钮" /> </RelativeLayout> </LinearLayout>
解决方案
明显是你的按钮颜色半透明化了!
解决方案二:
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:background="#FFBDBDBD"
android:text="我是按钮" />
这样就不透明了,改后面的BDBDBD就可以更换其它颜色。
记得采纳哦
解决方案三:
改一下透明度,应该就可以了
解决方案四:
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#0000FF" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:background="#BDBDBD"
android:text="我是按钮" />
</RelativeLayout>
下面的布局 可以可以直接用relativelayout 套一个 button 不要再加个linearlayout
要求的颜色效果 是button 默认的颜色 你把backgroud去掉试试
时间: 2024-11-05 22:49:09