12

選択されているかどうかによって背景が異なるはずのカスタムボタンがあります。XMLファイルでこれを述べる方法があるかどうか知りたいです。摂氏用のボタンと華氏用のボタンがあります。一方を選択すると「押された」ままでクリックできなくなり、もう一方のボタンは押せる状態で動作させたい。

        <Button
            android:id="@+id/celsiusButton"
            android:text="C"
            android:background="@drawable/button_unpressed_shape"
            android:layout_weight="3"
            android:layout_height="match_parent"
            android:layout_width="0dip"
            android:gravity="center" />

        <Button
            android:id="@+id/fahrenheitButton"
            android:text="F"
            android:background="@drawable/button_unpressed_shape"
            android:layout_weight="3"
            android:layout_height="match_parent"
            android:layout_width="0dip"
            android:gravity="center" />

摂氏ボタンはデフォルトで選択されています。私は自分のコードでこのように作業しようとしましたが、それは面倒に思えます:

    tempText = (TextView) findViewById( R.id.temperatureId );
    celsiusButton = (Button) findViewById( R.id.celsiusButton );
    celsiusButton.setBackgroundDrawable( getResources().getDrawable( R.drawable.button_pressed_shape ) );
    celsiusButton.setClickable( false );

    celsiusButton.setOnClickListener( new OnClickListener() {
        public void onClick(View v) {
            if( hasRead ) {
                    celsiusButton.setBackgroundDrawable( getResources().getDrawable( R.drawable.button_pressed_shape ) );
                    celsiusButton.setClickable( false );
                    fahrenheitButton.setBackgroundDrawable( getResources().getDrawable( R.drawable.button_unpressed_shape ) );
                    fahrenheitButton.setClickable( true );
                    temperature = ( ( ( temperature - 32 ) * 5 ) / 9 );
                    tempText.setText( Double.toString( temperature ).substring( 0, ( Double.toString( temperature ).length() - 2 ) ) + " C" );
            }
        }       
    });

    fahrenheitButton = (Button) findViewById( R.id.fahrenheitButton );
    fahrenheitButton.setOnClickListener( new OnClickListener() {
        public void onClick( View v ) {
            if( hasRead ) {
                fahrenheitButton.setBackgroundDrawable( getResources().getDrawable( R.drawable.button_pressed_shape ) );
                celsiusButton.setBackgroundDrawable( getResources().getDrawable( R.drawable.button_unpressed_shape ) );
                celsiusButton.setClickable( true );
                fahrenheitButton.setClickable( false );
                temperature = ( ( temperature * 9 ) / 5 ) + 32;
                tempText.setText( Double.toString( temperature ).substring( 0, ( Double.toString( temperature ).length() - 2 ) ) + "° F" );
            }
        }
    });
4

4 に答える 4

15

選択されているか選択されていない場合は、トグルボタンを使用する必要がありますhttps://developer.android.com/reference/android/widget/ToggleButton.html

そのための4つの州がまだあることに注意してください

このようなセレクターでそれらを定義します

<?xml version="1.0" encoding="utf-8"?>

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_checked="true" android:state_pressed="true" android:drawable="@drawable/likeactivepressed" />
    <item android:state_pressed="true" android:drawable="@drawable/likeinitialpressed"/>
    <item android:state_checked="true" android:drawable="@drawable/likeon"/>
    <item android:drawable="@drawable/likeinitial"/>
</selector>

次に、このようにボタンで定義します

  android:background="@drawable/like_button"

編集

実際には、ボタンを1つだけ使用できます。または、2つのラジオボタンを使用できます

https://developer.android.com/reference/android/widget/RadioButton.html

于 2013-01-14T19:38:04.993 に答える
6

これは、押されたときまたはフォーカスされたときにボタンの色を変更するために使用されます。このコードをドローアブルフォルダに書き込みます

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Button Focused-->
    <item   android:state_focused="true"
            android:state_pressed="false"
            android:drawable="@drawable/login_hover"
            />
<!-- Button Focused Pressed-->
    <item   android:state_focused="true"
            android:state_pressed="true"
            android:drawable="@drawable/login_hover"
            />
<!-- Button Pressed-->
    <item   android:state_focused="false"
            android:state_pressed="true"
            android:drawable="@drawable/login_hover"
            />
<!-- Button Default Image-->
    <item   android:drawable="@drawable/login_bg"/>

</selector

http://nishantvnair.wordpress.com/2010/10/05/change-color-of-button-on-click-android/

于 2013-01-14T19:48:28.733 に答える
3

背景画像を変更するには:

public void onClick(View v) {
   if(v == ButtonName) {
     ButtonName.setImageResource(R.drawable.ImageName);
   }
}

または、XMLファイルを使用します。

<?xml version="1.0" encoding="utf-8"?> 
<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:state_pressed="true"
   android:drawable="@drawable/login_selected" /> <!-- pressed -->
  <item android:state_focused="true"
   android:drawable="@drawable/login_mouse_over" /> <!-- focused -->
  <item android:drawable="@drawable/login" /> <!-- default -->
</selector>

OnClickで、次のコードを追加するだけです。

ButtonName.setBackgroundDrawable(getResources().getDrawable(R.drawable.ImageName));
于 2013-08-09T22:20:01.333 に答える
0

はい、レンダリングしているDrawableの状態に基づいてを選択できます。View

Selectorこれが、ある種のドローアブルの正確な目的です。ここで例とガイドを参照してください:http://developer.android.com/guide/topics/resources/drawable-resource.html#StateList

基本的に、各itemセレクターは、どの状態にどの値があるかを定義します。また、どのドローアブルがこの値のセットを表すかを定義します。

View次に、コードからaの状態を設定できます。

celsiusButton.setPressed(true);

UI設定をモデル/コントローラーから分離しているため、これは実際には優れています。コードがアプリケーションのUIを直接変更する責任を負わない場合、大量のドローアブルのセットを維持するのが簡単になります。

私の作業セレクターの例は次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/ic_background_pressed" android:state_pressed="true"/>
    <item android:drawable="@drawable/ic_background_focused" android:state_focused="true"/>
    <item android:drawable="@drawable/ic_background_default" />

</selector>

この例では、ボタンの状態に応じてボタンの背景をレンダリングします。

于 2013-01-14T19:42:42.137 に答える