gpt4 book ai didi

Android应用程序布局背景通过布局中的控件显示

转载 作者:行者123 更新时间:2023-11-29 20:53:51 26 4
gpt4 key购买 nike

我有一个带有 GridView 的 Android 应用程序,其中每个项目都是一个由两个按钮和两个 TextView 组成的 LinearLayout。当我将 LinearLayout 的背景颜色设置为白色时,按钮是灰色的。但是,如果我更改背景颜色,按钮的表面也会染上该颜色。我怎样才能避免这种情况?

浓色示例:

enter image description here

按钮应该是浅灰色,而不是红灰色。

网格项目布局 XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"
android:background="@drawable/grid_cell_max">

<Button
android:layout_width="50dp"
android:layout_height="50dp"
android:text="+"
android:includeFontPadding="false"
android:paddingBottom="4dp"
android:paddingTop="4dp"
android:id="@+id/buttonPlus"
android:layout_gravity="center_vertical"
android:textSize="24sp"
android:gravity="center_vertical|center_horizontal" />

<Button
android:layout_width="50dp"
android:layout_height="50dp"
android:text="-"
android:textSize="24sp"
android:includeFontPadding="false"
android:paddingBottom="4dp"
android:paddingTop="4dp"
android:id="@+id/buttonMinus"
android:layout_gravity="center_vertical"
android:gravity="center_vertical|center_horizontal" />

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="8dp"
android:paddingTop="1dp"
android:paddingBottom="2dp"
android:orientation="vertical">
<TextView
android:id="@+id/buildingTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:lines="1"
android:shadowDx="1"
android:shadowDy="1"
android:shadowRadius="2"
android:shadowColor="@android:color/darker_gray"
android:ellipsize="end"
android:textSize="15sp"
android:textStyle="bold"/>

<TextView
android:id="@+id/buildingInfo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="11sp"
android:lines="2"
android:ellipsize="end"
android:lineSpacingExtra="-2dp"/>
</LinearLayout>
</LinearLayout>

drawable/grid_cell_max.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape= "rectangle" >
<solid android:color="#ffe6ffe3"/>
<stroke android:width="1dp" android:color="#c0c0c0"/>
</shape>

最佳答案

不幸的是,我认为没有一种简单的方法可以做到这一点。我解决这个问题的方法是:

  1. 使用 Android holo colors generator生成新资源:

    • 确保选择按钮所需的颜色(在“主题名称”下)
    • 确保将“彩色按钮”切换为"is"
  2. 下载存档并解压缩。

  3. 仅将解压项目中的可绘制文件夹合并到您的文件夹中(仅按钮图像资源和按钮选择器 xml 文件 - 位于可绘制文件中)

  4. 将按钮的背景设置为:

    android:background="@drawable/apptheme_btn_default_holo_light"

您现在将拥有一个不透明的按钮,其颜色是您从 android holo 颜色生成器中选择的。

如果您希望所有应用按钮的行为方式相同,则必须更新应用主题。为此,请按照上述步骤操作,然后更新您的“styles.xml”文件:

<style name="AppTheme" parent="android:Theme.Holo.Light">
<item name="android:buttonStyle">@style/ButtonAppTheme</item>
</style>

<style name="ButtonAppTheme" parent="android:Widget.Holo.Light.Button">
<item name="android:background">@drawable/apptheme_btn_default_holo_light</item>
</style>

此外,如果这样做,您可以从 xml 中删除按钮背景。如果您想保留“Theme.Holo.Light”应用主题,我找不到其他解决方案。

关于Android应用程序布局背景通过布局中的控件显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28317433/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com