基本的に、メイン アクティビティの 3 つのボタンの背景を変更します。これで、ボタンをクリックしても、背景を変更する前のように強調表示されなくなりました。どういうわけか、背景がこの問題を引き起こしています。他の誰もまったく同じ問題を抱えているようには見えません。私は何か間違ったことをしていますか?
NB : ボタンは正常に機能しますが、機能しないのは強調表示だけです。
XMLの私のコード:
<Button
android:id="@+id/Contact"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/textView1"
android:layout_alignTop="@+id/linearLayout1"
android:layout_toRightOf="@+id/linearLayout1"
android:background="#f0e68c" //<<Here this background i changed
android:text="@string/Contact" />
<Button
android:id="@+id/Gallery"
style="?android:attr/buttonStyleSmall"
android:layout_width="88dp"
android:layout_height="wrap_content"
android:background="#f0e68c" //<<Here this background i changed
android:text="@string/Gallery" />
</RelativeLayout>
そのため、これらのボタンの背景を変更した後、ハイライトが機能しません。通常に戻すと、ハイライトは正常に機能します。