0

16個のボタンがあるレイアウトファイルがあります。現在、16個のボタンすべてを変更して色を変更しています。これを行うためのより良い方法があるはずです、グーグルで見て何も見つかりませんでした。アンクロか何かをする方法があるに違いないと思うので、私はそれを一度だけ変更する必要があります。

ファイル

 <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"

次に、このxyz色をString.xmlで定義します

または、テーマを使用してスタイルや色を定義することもできます。次に、ボタンでテーマを追加します

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