Android 扫描枪开发
Posted 正怒月神
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 扫描枪开发相关的知识,希望对你有一定的参考价值。
最近公司需要,准备开发扫描枪。
话不多说,直接开始
创建新项目
1 如果遇到
Error:Execution failed for task \':app:preDebugandroidTestBuild\'.
> Conflict with dependency \'com.android.support:support-annotations\' in project \':app\'. Resolved versions for app (26.1.0) and test app (27.1.1) differ. See https://d.android.com/r/tools/test-apk-dependency-conflicts.html for details.
参见:https://www.cnblogs.com/hanjun0612/p/10141393.html
2 使用更加美观的android material design
在build.gradle中,增加如下
dependencies {
compile \'com.github.navasmdc:MaterialDesign:1.5@aar\'
}
如果遇到错误:
注释build.gradle中的design
dependencies { // implementation \'com.android.support:design:26.1.0\' compile \'com.github.navasmdc:MaterialDesign:1.5@aar\' }
3 在res/layout/activity_main.xml中添加如下代码:
<?xml version="1.0" encoding="utf-8"?> <android.support.constraint.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="com.example.tyler.scangun_kps.MainActivity"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!111" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> <com.gc.materialdesign.views.ButtonRectangle android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#1E88E5" android:text="Button" /> </android.support.constraint.ConstraintLayout>
4 显示效果
android material design帮助:https://android-arsenal.com/details/1/1156
以上是关于Android 扫描枪开发的主要内容,如果未能解决你的问题,请参考以下文章
我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情
Android 逆向Android 进程注入工具开发 ( Visual Studio 开发 Android NDK 应用 | Visual Studio 中 SDK 和 NDK 安装位置 )(代码片段
Android课程---Android Studio使用小技巧:提取方法代码片段
Android 逆向Android 逆向通用工具开发 ( Android 平台运行的 cmd 程序类型 | Android 平台运行的 cmd 程序编译选项 | 编译 cmd 可执行程序 )(代码片段