Android studio 初次使用 Hello World!
程序员文章站
2022-06-15 09:34:55
Android studio 初次使用步骤第一步:启动一个新的Android studio项目第二步:选择空项目,Next下一步第三步:起名,选择语言,选择最小SDK,这里提示的是你的程序可以在100%设备上运行等待加载项目四:进入主界面五:编写第一个程序 Hello World!
Android studio 初次使用步骤
第一步:启动一个新的Android studio项目
第二步:选择空项目,Next下一步
第三步:起名,选择语言,选择最小SDK,这里提示的是你的程序可以在100%设备上运行
等待加载项目
四:进入主界面
五:编写第一个程序 Hello World!
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center">
<TextView
android:gravity="center"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text=" Hello World!" />
</LinearLayout>
不需要编写代码部分,点击运行可以用软件带的虚拟设备,也可以数据线连接手机打开开发者和USB调试。
运行完成:
好了,开始你的安卓学习吧~
本文地址:https://blog.csdn.net/weixin_45813438/article/details/110210325
推荐阅读
-
Android Studio 通过一个登录功能介绍SQLite数据库的使用
-
Android Studio 使用ViewPager + Fragment实现滑动菜单Tab效果 --简易版
-
在Android Studio中Parcelable插件的简单使用教程
-
新手使用Android Studio会遇到的两个问题和解决办法
-
Android studio怎么使用git? 使用git查看本地与远程仓库文件的教程
-
android studio中怎么使用JNI之静态库?
-
浅谈Android Studio 3.0 工具新特性的使用 Android Profiler 、Device File Explorer
-
ubuntu android studio中关于NDK的使用介绍
-
Android studio初次安装启动时弹出unable to access android sdk add-on list提示的解决方法
-
Android学习笔记(一)环境安装及第一个hello world