Android的dialog弹出来的时候组件EditText弹出键盘

背景

在文章Android打开Activity时不自动弹出键盘,有网友提到dialog弹出来的时候组件EditText弹出键盘。而且上一篇文章中配置不起作用。

dialog中有EditText启动后不弹出键盘

经过我的实践,不需要任何设置,就可以达到要求。现在给出全部代码。

dialog_input.xml

xml 复制代码
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:padding="16dp">

    <TextView
        android:id="@+id/dialog_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="输入标题"
        android:textSize="20sp"
        android:paddingBottom="8dp" />

    <EditText
        android:id="@+id/dialog_input"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="请输入内容" />

    <Button
        android:id="@+id/dialog_confirm"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="确认"
        android:layout_gravity="end"
        />
</LinearLayout>

自定义dialog的布局。

下面是activity:activity_main

xml 复制代码
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <Button
        android:id="@+id/btn_service"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:text="启动服务" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        />

</androidx.constraintlayout.widget.ConstraintLayout>

dialog代码:

java 复制代码
package com.cat.chipdemo;

import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.app.AppCompatActivity;

public class MainActivity extends AppCompatActivity {
    private static final String TAG = "MainActivity";
    private Button btnService;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        initView();

        btnService.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                showInputDialog();
            }
        });
    }


    private void showInputDialog() {
        // 创建AlertDialog的构建器
        AlertDialog.Builder builder = new AlertDialog.Builder(this);

        // 加载自定义布局
        LayoutInflater inflater = getLayoutInflater();
        View dialogView = inflater.inflate(R.layout.dialog_input, null);
        builder.setView(dialogView);

        // 获取视图组件
        TextView titleTextView = dialogView.findViewById(R.id.dialog_title);
        EditText inputEditText = dialogView.findViewById(R.id.dialog_input);
        Button confirmButton = dialogView.findViewById(R.id.dialog_confirm);

        // 设置标题
        titleTextView.setText("请输入信息");

        // 创建Dialog
        AlertDialog dialog = builder.create();

        // 设置按钮的点击事件
        confirmButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                String inputText = inputEditText.getText().toString();
                // 处理输入的内容
                handleInput(inputText);
                dialog.dismiss(); // 关闭对话框
            }
        });

        // 显示对话框
        dialog.show();
    }

    private void handleInput(String input) {
        // 处理用户输入的逻辑,比如保存输入内容或进行其他操作
        // 这里可以根据需要实现具体的逻辑
    }

    private void initView() {
        btnService = (Button) findViewById(R.id.btn_service);
    }
}

结果

录屏

相关推荐
Asin²+cos²=18 小时前
关于Android Studio Koala Feature Drop | 2024.1.2下载不了插件的解决办法
android·ide·android studio
大耳猫9 小时前
Android gradle和maven国内镜像地址
android·gradle·maven
-seventy-11 小时前
Android 玩机知识储备
android
CYRUS STUDIO12 小时前
frida脚本,自动化寻址JNI方法
android·运维·自动化·逆向·移动安全·jni·frida
暮志未晚Webgl12 小时前
102. UE5 GAS RPG 实现范围技能奥术伤害
android·java·ue5
Patience to do12 小时前
Android Studio项目(算法计算器)
android·算法·android studio
我又来搬代码了16 小时前
【Android】使用TextView实现按钮开关代替Switch开关
android
江-月*夜18 小时前
uniapp vuex 搭建
android·javascript·uni-app
大风起兮云飞扬丶19 小时前
Android——显式/隐式Intent
android
大风起兮云飞扬丶19 小时前
Android——metaData
android