按下一段时间后,有什么方法可以在另一个视图之上打开另一个视图吗?

时间:2020-06-07 12:56:37

标签: java android

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

1 个答案:

答案 0 :(得分:0)

要在android中创建类似的内容,您可以使用具有自定义布局的alertDialog并模糊背景: custom_layout

    <?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>

活动中:

        //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之类的窗口属性,因为它的代码较少且易于使用。