当前位置:   article > 正文

android studio 弹出框设置_android studio如何在当前活动界面上出现选项框

android studio如何在当前活动界面上出现选项框

android studio dialog实现

dialog实现

在activity.main中编辑

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

    
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/btn2"
        android:text="多选框"
        android:onClick="onclick"/>
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/btn3"
        android:text="单选框"
        android:layout_below="@id/btn2"
        android:onClick="onclick"/>
     
</RelativeLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

MainActivity

导入包时存在错误
一、V7存在问题
import android.support.v7.app.AppcompatActivity报错时,
将其改成
import androidx.appcompat.app.AppCompatActivity;

二、alertdiag存在问题
import android.app.v7.AlertDialog;
将其改成
import android.app.AlertDialog;

三、Toast存在问题
新建toast java文件

package com.example.dialog;
import android.content.Context;
import android.widget.Toast;


public class ToastUtil {
   
    private Toast mToast;
    private Context context;

    public ToastUtil(Context context) {
   
        this.context = context;
    }

    public static void showMsg(MainActivity mainActivity, String s) {
   
    }


    public Toast getSingletonToast(int resId) {
   
        if (mToast == null) {
   
            mToast = Toast.makeText(context, resId, Toast.LENGTH_SHORT);
        }else{
   
            mToast.setText(resId);
        }
        return mToast;
    }

    public Toast getSingletonToast(String text) {
   
        if (mToast == null) {
   
            mToast = Toast.makeText(context, text, Toast
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签