タグ付けされた質問 「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 …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.