0

我有一个包含 16 个按钮的布局文件。现在我正在通过更改所有 16 个按钮来更改颜色。必须有更好的方法来做到这一点,看看谷歌找不到任何东西。我想一定有办法做一个 amcro 什么的,所以我只需要改变它 1 次。

文件

 <LinearLayout 
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center" 
android:orientation="horizontal" > 

        <Button
        android:id="@+id/butVol"
        android:layout_width="140dp"
        android:layout_height="wrap_content"
        android:textSize="24px"
        android:text="Volume"   
        android:textColor="#ff0000ff"
        android:layout_gravity="center" 
    />

    <Button
        android:id="@+id/butRington"
        android:layout_width="140dp"
        android:layout_height="wrap_content"
    android:textSize="24px"
        android:text="Rington"  
        android:textColor="#ff0000ff"
        android:layout_gravity="center" 
    />  


android:textColor="#ff0000ff" android:layout_marginRight="6dp" />

    <Button
        android:id="@+id/butSound2"
        android:layout_width="140dp"
        android:layout_height="wrap_content"
    android:textSize="24px"
        android:text="Sound2"   
        android:textColor="#ff0000ff"
        android:layout_marginRight="6dp"    
    />  


android:textColor="#ff0000ff" android:layout_marginRight="6dp" />

    <Button
        android:id="@+id/butSound4"
        android:layout_width="140dp"
        android:layout_height="wrap_content"
    android:textSize="24px"
        android:text="Sound4"   
        android:textColor="#ff0000ff"
        android:layout_marginRight="6dp"    
    />  

<LinearLayout 
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:orientation="horizontal" >          
    <Button
        android:id="@+id/butSound5"
        android:layout_width="140dp"
        android:layout_height="wrap_content"
    android:textSize="24px"
        android:text="Sound5"   
        android:textColor="#ff0000ff"
        android:layout_marginRight="6dp"
    />

    <Button
        android:id="@+id/butSound6"
        android:layout_width="140dp"
        android:layout_height="wrap_content"
    android:textSize="24px"
        android:text="Sound6"   
        android:textColor="#ff0000ff"
        android:layout_marginRight="6dp"    
    />  

  <LinearLayout 
android:layout_width="wrap_content"
android:layout_height="wrap_content"
 android:layout_gravity="center"
android:orientation="horizontal" >          
    <Button
        android:id="@+id/butSound7"
        android:layout_width="140dp"
        android:layout_height="wrap_content"
    android:textSize="24px"
        android:text="Sound7"   
        android:textColor="#ff0000ff"
        android:layout_marginRight="6dp"
    />

    <Button
        android:id="@+id/butSound8"
        android:layout_width="140dp"
        android:layout_height="wrap_content"
    android:textSize="24px"
        android:text="Sound8"   
        android:textColor="#ff0000ff"
        android:layout_marginRight="6dp"    
    />  


android:textColor="#ff0000ff" android:layout_marginRight="6dp" />

    <Button
        android:id="@+id/butSound10"
        android:layout_width="140dp"
        android:layout_height="wrap_content"
    android:textSize="24px"
        android:text="Sound10"  
        android:textColor="#ff0000ff"
        android:layout_marginRight="6dp"    
    />  

<LinearLayout 
android:layout_width="wrap_content"
android:layout_height="wrap_content"
 android:layout_gravity="center"
android:orientation="horizontal" >          
    <Button
        android:id="@+id/butSound11"
        android:layout_width="140dp"
        android:layout_height="wrap_content"
    android:textSize="24px"
        android:text="Sound11"  
        android:textColor="#ff0000ff"
        android:layout_marginRight="6dp"
    />

    <Button
        android:id="@+id/butSound12"
        android:layout_width="140dp"
        android:layout_height="wrap_content"
    android:textSize="24px"
        android:text="Sound12"  
        android:textColor="#ff0000ff"
        android:layout_marginRight="6dp"    
    />  


android:textColor="#ff0000ff" android:layout_marginRight="6dp" />

    <Button
        android:id="@+id/butSound14"
        android:layout_width="140dp"
        android:layout_height="wrap_content"
    android:textSize="24px"
        android:text="Sound14"  
        android:textColor="#ff0000ff"
        android:layout_marginRight="6dp"    
    />  


android:textColor="#ff0000ff" android:layout_marginRight="6dp" />

    <Button
        android:id="@+id/butSound16"
        android:layout_width="140dp"
        android:layout_height="wrap_content"
    android:textSize="24px"
        android:text="Sound16"  
        android:textColor="#ff0000ff"
        android:layout_marginRight="6dp"    
    />  

android:textColor="#ff0000ff" android:layout_marginRight="6dp" />

    <Button
        android:id="@+id/butSound18"
        android:layout_width="140dp"
        android:layout_height="wrap_content"
    android:textSize="24px"
        android:text="Sound18"  
        android:textColor="#ff0000ff"
        android:layout_marginRight="6dp"    
    />  


4

1 回答 1

1

你不应该直接使用颜色代码

android:textColor="#ff0000ff"

将此替换为android:textColor="@color/xyz"

然后在 String.xml 中定义这个 xyz 颜色

或者,您可以使用主题来定义样式或颜色。然后你的按钮添加主题

android:theme="@style/xyzStyle"
于 2013-03-24T22:26:29.930 回答