Questions tagged «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 android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/app_name" /> </RelativeLayout> 活动(MainActivity.java): package com.example.slideuplayout; import android.app.Activity; import android.os.Bundle; import …


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.