返回顶部
首页 > 资讯 > 移动开发 >sweet alert dialog 在android studio应用问题说明详解
  • 498
分享到

sweet alert dialog 在android studio应用问题说明详解

AndroidStudiostudiodialogalertAndroid 2022-06-06 07:06:59 498人浏览 泡泡鱼
摘要

看到这个sweet-alert-dialog很亲切,因为前端开发本人用的提示就是这个js插件,java牛人很厉害,直接弄成一个java包插件,Good! 下面记录如何引用到工程

看到这个sweet-alert-dialog很亲切,因为前端开发本人用的提示就是这个js插件,java牛人很厉害,直接弄成一个java包插件,Good!

下面记录如何引用到工程,并使用:

sweet-alert-dialog插件可以直接到GitHub上下载

地址:https://github.com/pedant/sweet-alert-dialog

或者直接到发布好的页面下载:

Https://github.com/pedant/sweet-alert-dialog/releases

我下载的是:sweet-alert-dialog-1.1版本zip包

将下载sweet-alert-dialog-1.1包解压出来,再你的app项目中,打开 File -> New -> Import Module 选择到刚才解压的文件夹

这里写图片描述
这里写图片描述
引用sweet-alert-dialog

报错:

Error:Dependency Myalert:sweetalertdialog:unspecified on project app resolves to an APK arcHive which is not supported as a compilation dependency. File: D:\AndroidStudioProjects\TEST\Myalert\sweetalertdialog\build\outputs\apk\sweetalertdialog-release-unsigned.apk

可以先Build一下sweet-alert-dialog工程。

另外你的工程Gradle Scripts目录下的bulid.gradle (Module:app)下


dependencies { 
compile fileTree(include: [‘*.jar'], dir: ‘libs') 
testCompile ‘junit:junit:4.12' 
compile ‘com.android.support:appcompat-v7:24.1.1' 
compile ‘cn.pedant.sweetalert:library:1.3' 
}

引入:compile ‘cn.pedant.sweetalert:library:1.3'

Build app出现新的错误信息:

Error:Execution failed for task ‘:app:processDebugManifest'.
Manifest merger failed : Attribute application@icon value=(@mipmap/ic_launcher) from AndroidManifest.xml:7:9-43
is also present at [com.pnikosis:materialish-progress:1.0] AndroidManifest.xml:13:9-45 value=(@drawable/ic_launcher).
Suggestion: add ‘tools:replace=”android:icon”' to element at AndroidManifest.xml:5:5-18:19 to override.

解决方法:

修改AndroidManifest.xml:

在manifest添加 xmlns:tools=”http://schemas.android.com/tools”

在application添加 tools:replace=”android:icon,android:theme,android:allowBackup,android:label,android:supportsRtl”

将在application中所用到的全部android:都在上面tools:replace=添加进去,逗号分隔。

如下:


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="cn.cgrs.myalert">
<application
tools:replace="android:allowBackup,android:icon,android:label,android:supportsRtl,android:theme"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>

到此sweet-alert-dialog已完成配置,可以开始随意使用了….

以上所述是小编给大家介绍的sweet alert dialog 在android studio应用问题说明详解,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对编程网网站的支持!

您可能感兴趣的文章:AndroidStudio 实现加载字体资源的方法ubuntu16.04 LTS 下安装 Android Studio 2.2.2 的详细步骤Android Studio应用开发集成百度语音合成使用方法实例讲解Mac Android Studio快捷键整理Android Studio设置主题与字体大小图文教程Android studio中生成引用.aar和.jar的方法详解Android Studio添加第三方库的注意事项AndroidStudio 使用过程中出现的异常(Gradle sync failed)处理办法AndroidStudio 如何使用aar详解Android studio 出现错误Run with --stacktrace option to get the stack trace. Run with --info or --debu


--结束END--

本文标题: sweet alert dialog 在android studio应用问题说明详解

本文链接: https://lsjlt.com/news/23880.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作