0

こんにちは、私は次のことを達成しようとしています:

imageview と textview の 3 つの Android 標準コントロールをレンダリングするはずのコントロールがあります。グラデーションの背景を持つ 1 つのコントロールにそれらをラップしようとしているので、1 つのボタンのように見えます。

これが私が試したことです:コントロールのレイアウトファイルにボタンを追加しました

<Button android:id="@+id/btnCustomButton" android:layout_width="214dp" android:drawable="@drawable/custom_button" android:background="@drawable/custom_button_background" android:gravity="center_horizontal" android:layout_height="39dp" />

custom_button.xml で:

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" android:height="33dp" android:width="214dp">
   <ImageView
  android:gravity="left|center_horizontal" android:id="@+id/btn_icon" android:layout_width="fill_parent"  android:layout_height="27dp" />

   <TextView android:id="@+id/txtLabel" android:textSize="15px" android:textColor="@color/main_text_black" android:text="Search" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="center_vertical" android:singleLine="true" />
</shape

custom_button_background.xml で:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:top="15dp" android:state_pressed="true">
            <shape android:shape="rectangle">
              <gradient android:startColor="@color/gradient_hl_top" android:endColor="@color/gradient_hl_bottom" android:angle="270" />
            <stroke android:width="3dp" android:color="@color/main_text_black" />
            <corners android:radius="3dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
            </shape>
    </item>
    <item android:state_focused="true">
        <shape android:shape="rectangle">
              <gradient android:startColor="@color/gradient_hl_top" android:endColor="@color/gradient_hl_bottom" android:angle="270" />
            <stroke android:width="3dp" android:color="@color/main_text_black" />
            <corners android:radius="3dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
            </shape>
    </item>
    <item>        
        <shape android:shape="rectangle">
              <gradient android:startColor="@color/_gradient_top" android:endColor="@color/gradient_bottom" android:angle="270" />
            <stroke android:width="3dp" android:color="@color/main_text_black" />
            <corners android:radius="3dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
            </shape>
    </item>
</selector>

「検索」を印刷する TextView は表示されませんが、グラデーションが機能していることがわかります。私は何を間違っていますか?

4

1 に答える 1

0

だからここに私がこれをした方法があります:

  1. 相対レイアウトでカスタム コントロールを作成し、レイアウトの背景をセレクター custom_button_background.xml に設定しました

  2. カスタム コントロールの相対レイアウト xml ファイル内に ImageView と TextView を追加しました。

  3. オンクリックリスナーをコントロールに追加

問題は、クリックが処理されなかったため、ハイライトが表示されなかったことです。

私が今抱えている唯一の問題は、ImageView に独自のハイライト状態 (別の画像) があり、セレクターも必要なことです。セレクターを追加すると、クリック時に ImageView で何も変化が見られません。問題を見つけたら、残りを追加します。

于 2011-01-16T07:21:25.303 に答える