近期学习Android开发,找到的资源都是使用Android Studio老版本进行教学,与新版本在操作上略有不同,学习时可能会有一些步骤跟不上,而且以Anrdoid Studio3.5为基础的问题分析相比于其他版本较少,下载老版本Android Studio学习可能更贴近教学视频等分享下老版本Android Studio的下载地址,根据自己需要来下载相应的Android Studio版本
https://developer.android.google.cn/studio/archive.html#android-studio-2-3-1?utm_source=androiddevtools&utm_medium=website
下载网站展示:
近期学习Android开发,找到的资源都是使用Android Studio老版本进行教学,与新版本在操作上略有不同,学习时可能会有一些步骤跟不上,而且以Anrdoid Studio3.5为基础的问题分析相比于其他版本较少,下载老版本Android Studio学习可能更贴近教学视频等分享下老版本Android Studio的下载地址,根据自己需要来下载相应的Android Studio版本1. ...
The Table of Contents
Each bullet shown below represents a chapter. Use the search field in the nav bar to search all of the CommonsWare books to see what they hold!
Key
Android
Concepts
Choosing Your Development Toolchain
Tutorial #1 - Installing the Tools
Android
and Projects
Tutorial #2 - Creating a Stub Project
Getting Around
Android
Studio
Contents of
Android
Projects
Introducing Gradle and the Manifest
Tutorial #3 - Manifest Changes
Some Words About Resources
Icons
Tutorial #4 - Adjusting Our Resources
The Theory of Widgets
The
Android
User Interface
Basic Widgets
Debugging Your App
The Classic Container Classes
Other Common Widgets and Containers
Tutorial #5 - Creating a Layout
GUI Building, Continued
AdapterViews and Adapters
The WebView Widget
Defining and Using Styles
Dependencies
Tutorial #6 - Adding a Library
Introducing ConstraintLayout
RecyclerView
The Action Bar
Vector Drawables
Tutorial #7 - Setting Up the Action Bar
Android
’s Process Model
Activities and Their Lifecycles
Tutorial #8 - Setting Up An Activity
The Tactics of Fragments
Tutorial #9 - Starting Our Fragments
Swiping with ViewPager
Tutorial #10 - Rigging Up a ViewPager
Resource Sets and Configurations
Material Design Basics
Dealing with Threads
Requesting Permissions
Assets, Files, and Data Parsing
Tutorial #11 - Adding Simple Content
Tutorial #12 - Displaying the Book
Using Preferences
Tutorial #13 - Using Some Preferences
SQLite Databases
Tutorial #14 - Saving Notes
Internet Access
Intents, Intent Filters
Broadcasts and Broadcast Receivers
Tutorial #15 - Sharing Your Notes
Services and the Command Pattern
Tutorial #16 - Updating the Book
Tutorial #17 - Supporting Large Screens
Backwards Compatibility Strategies and Tactics
System Services
Google Play Services
Getting Help
Working with Library Modules
Gradle and Tasks
Gradle Build Variants
Manifest Merger Rules
Signing Your App
Distribution
Writing a Gradle Plugin
Code Generation
Advanced Gradle for
Android
Tips
Testing with JUnit4
Testin
Android
studio
下载
与安装
现阶段
android
开发的工具有很多,个人觉得
Android
studio
还是比较好用的,所以今天给大家详细介绍一下
Android
studio
的具体安装步骤。话不多说,直接上图。
安装包
下载
地址:https://pan.baidu.com/s/1ZBSAb5oUxb-eHUXKKbz8Rw 提取码:l9mu
安装界面,点击next即可。
点击next
也可以到官网链接http://www.
android
-
studio
.org/
下载
对应的
版本
。
下载
好了就是一顿无脑点击,但是可能有点占空间和后期有东西需要
下载
,建议放在空间较大的盘。
最后一个会有一个
导入用户原配置的选择,可以选择不导入。
Android
Studio
提示
android
.support.v4 不存在,可能是因为你的项目中未添加支持库或者你的支持库
版本
过低导致的。为了解决这个问题,你可以尝试以下几种
方法
:
1. 在你的 build.gradle 文件中添加以下依赖项:
dependencies {
implementation 'com.
android
.support:support-v4:28.0.0'
2. 如果你已经添加了依赖项,但是仍然提示错误,你可以尝试清除和重建项目:
点击菜单栏中的 Build -> Clean Project,等待清除完成后再点击 Build -> Rebuild Project。
3. 如果以上
方法
都无法解决该问题,你可以尝试更新你的
Android
Support Library
版本
:
在 build.gradle 文件中找到以下代码:
android
{
compileSdkVersion 28
defaultConfig {
minSdkVersion 16
targetSdkVersion 28
将 compileSdkVersion 和 targetSdkVersion 设置为最新
版本
,例如:
android
{
compileSdkVersion 30
defaultConfig {
minSdkVersion 16
targetSdkVersion 30
然后在 build.gradle 文件中添加以下依赖项:
dependencies {
implementation 'com.
android
.support:support-v4:30.0.0'
重新构建项目,看看是否已经解决了问题。