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


10
เลื่อนเค้าโครงขึ้นจากด้านล่างของหน้าจอ
ฉันมีเค้าโครงที่ซ่อนอยู่จากมุมมอง ในการคลิกปุ่มฉันต้องการให้มันเลื่อนขึ้นจากด้านล่างโดยดันเนื้อหาของหน้าจอทั้งหมดขึ้นไปคล้ายกับการที่ whatsapp แสดงแผงอิโมติคอนในหน้าจอแชท ฉันเคยเห็น SlidingDrawer นั่นไม่ได้ผลสำหรับฉัน มันต้องใช้ภาพเป็นจุดจับซึ่งแสดงอยู่ตรงกลางหน้าจอฉันไม่ต้องการอย่างนั้น นอกจากนี้ยังเลื่อนไปที่เนื้อหาบนหน้าจอที่มีอยู่ฉันกำลังมองหาวิธีย้ายเนื้อหาที่มีอยู่ขึ้นไป อัปเดต 1: ฉันลองใช้แอนิเมชั่นตามที่ Sanket Kachhela แนะนำ แต่จะไม่แสดงเค้าโครงที่ซ่อนอยู่ นี่คือรหัส เค้าโครง (activity_main.xml): <RelativeLayout android:id="@+id/main_screen" android:layout_width="match_parent" android:layout_height="match_parent" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/hello_world" android:layout_alignParentTop="true"/> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/hello_world" android:layout_centerInParent="true"/> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Slide up / down" android:layout_alignParentBottom="true" android:onClick="slideUpDown"/> </RelativeLayout> <RelativeLayout android:id="@+id/hidden_panel" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@id/main_screen"> <Button …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.