คำถามติดแท็ก rippledrawable

13
เพิ่มเอฟเฟกต์ระลอกคลื่นให้กับปุ่มของฉันด้วยสีพื้นหลังของปุ่ม?
ฉันสร้างปุ่มขึ้นมาและต้องการเพิ่มเอฟเฟกต์ระลอกคลื่นให้กับปุ่มนั้น! ฉันสร้างไฟล์ XML ปุ่ม bg: (bg_btn.xml) <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <gradient android:startColor="#FFFFFF" android:endColor="#00FF00" android:angle="270" /> <corners android:radius="3dp" /> <stroke android:width="5px" android:color="#000000" /> </shape> และนี่คือไฟล์เอฟเฟกต์ระลอกของฉัน: (ripple_bg.xml) <ripple xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:color="#f816a463" tools:targetApi="lollipop"> <item android:id="@android:id/mask"> <shape android:shape="rectangle"> <solid android:color="#f816a463" /> </shape> </item> </ripple> และนี่คือปุ่มของฉันที่ฉันต้องการเพิ่มเอฟเฟกต์ระลอกคลื่น: <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="New Button" android:id="@+id/button" android:layout_centerHorizontal="true" android:layout_marginTop="173dp" android:textColor="#fff" android:background="@drawable/ripple_bg" …

11
วิธีสร้างระลอกวงกลมบนปุ่มเมื่อมีการคลิก?
พื้นหลัง ในแอปโทรออกของ Android เมื่อคุณเริ่มค้นหาบางสิ่งและคุณคลิกปุ่มลูกศรทางด้านซ้ายของ EditText คุณจะได้รับเอฟเฟกต์ระลอกคลื่นวงกลม: ปัญหา ฉันพยายามจะมีมันเหมือนกัน แต่ฉันมีรูปสี่เหลี่ยม: <ImageButton android:id="@+id/navButton" android:layout_width="40dp" android:layout_height="40dp" android:layout_gravity="center_vertical" android:layout_marginLeft="8dp" android:background="?android:attr/selectableItemBackground" android:src="@drawable/search_ic_back_arrow"/> คำถาม ฉันจะทำให้ปุ่มมีเอฟเฟกต์ระลอกคลื่นวงกลมเมื่อถูกคลิกได้อย่างไร? ฉันต้องสร้างสิ่งที่เบิกได้ใหม่หรือมีวิธีการสร้างขึ้นมา?

10
วิธีสร้างเอฟเฟกต์ระลอกคลื่นในรูปแบบง่ายๆ
ฉันจะมีเอฟเฟกต์ระลอกคลื่นในเลย์เอาต์เชิงเส้น / สัมพัทธ์อย่างง่ายได้อย่างไร ฉันได้ลองตั้งค่าพื้นหลังของเค้าโครงเป็น: <?xml version="1.0" encoding="utf-8"?> <ripple xmlns:android="http://schemas.android.com/apk/res/android" android:color="?android:colorControlHighlight" > <item android:drawable="@android:color/white"/> </ripple> อย่างไรก็ตามฉันเห็นเพียงพื้นหลังสีขาวธรรมดาและไม่มีเอฟเฟกต์การกระเพื่อมเมื่อสัมผัสเค้าโครง ผมทำอะไรผิดหรือเปล่า? แก้ไข: สำหรับการอ้างอิงนี่คือไฟล์ xml เลย์เอาต์ของฉัน: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="250dp" android:layout_height="250dp" android:background="@drawable/test" android:clickable="true"> </RelativeLayout>
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.