gpt4 book ai didi

java - 如何在 Android 上创建可滚动的弹出窗口?

转载 作者:行者123 更新时间:2023-12-01 18:08:28 25 4
gpt4 key购买 nike

如何在 Android 上创建可滚动的弹出窗口?这是我的弹出窗口代码,请有人帮助我使用可滚动的弹出窗口。

请帮我设计可滚动窗口。

最佳答案

请按照以下步骤操作:

  1. 为弹出窗口创建自定义布局(xml 文件)

示例代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:orientation="vertical"
android:layout_height="fill_parent">

<TextView
android:id="@+id/alertbox_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:gravity="center"
android:textColor="@color/text_color_black"
android:textSize="17sp" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="15dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:layout_marginTop="10dp"
android:orientation="horizontal"
android:paddingBottom="10dp"
android:weightSum="100"
>

<Button
android:id="@+id/alertbox_yes"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="48"
android:background="@color/navigation_item_background"
android:text="@string/alertbox_yes"
android:textColor="@color/text_color_black"
android:textSize="17sp"
android:textStyle="bold" />

<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="4" />

<Button
android:id="@+id/alertbox_no"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="48"
android:background="#808080"
android:text="@string/alertbox_no"
android:textColor="#ffffff"
android:textSize="17sp"
android:textStyle="bold" />
</LinearLayout>

</LinearLayout>
  • 在您的 Activity 中需要时调用此弹出窗口
  • 示例代码:

    public void showAlertbox(String title) {
    Dialog dialog = new Dialog(this);
    dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
    dialog.setContentView(R.layout.alertbox_yes_no);
    dialog.setCanceledOnTouchOutside(false);
    TextView alertbox_title = (TextView) dialog
    .findViewById(R.id.alertbox_title);
    alertbox_title.setText(title);

    Button yes = (Button) dialog.findViewById(R.id.alertbox_yes);
    Button no = (Button) dialog.findViewById(R.id.alertbox_no);

    yes.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
    //code the functionality when YES button is clicked
    }
    });

    no.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
    //code the functionality when NO button is clicked
    }
    });

    dialog.show();
    }

    关于java - 如何在 Android 上创建可滚动的弹出窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34585137/

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