gpt4 book ai didi

java - 有什么方法可以在按住另一个 View 一段时间后在另一个 View 之上打开一个不同的 View

转载 作者:行者123 更新时间:2023-12-01 16:21:59 25 4
gpt4 key购买 nike

我想实现类似 instagram 在这里所做的事情。长按帖子后,它会在屏幕顶部打开另一个 View 以显示帖子,并使屏幕的其余部分变得模糊。 enter image description here

最佳答案

为了在android中创建类似的东西,你可以使用alertDialog与自定义布局并模糊背景:自定义布局

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:paddingLeft="30dp"
android:paddingRight="30dp"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<LinearLayout
android:orientation="horizontal"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/button1"
android:layout_below
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
</LinearLayout>

Activity 中:

        //create an alert builder
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Name"); //you can add this to your custom layout only
// set the custom layout
final View view = getLayoutInflater().inflate(R.layout.custom_layout, null);
builder.setView(view);
Button button1 = (Button) view.findViewById(R.id.button1); // etc.. for button2,3,4.
// onclick functions
// create and show the alert dialog
AlertDialog dialog = builder.create();
dialog.show();

对于模糊背景,您可以添加类似 https://stackoverflow.com/a/41373144/7364284 的主题但是,我建议使用窗口属性,如 https://stackoverflow.com/a/10381077/7364284因为它的代码较少并且易于使用。

关于java - 有什么方法可以在按住另一个 View 一段时间后在另一个 View 之上打开一个不同的 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62245654/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com