下载

https://developer.android.google.cn/studio?hl=zh-cn
在这里插入图片描述

安装

在这里插入图片描述
在这里插入图片描述
打开cmd输入如下命令

android-studio-2024.1.1.12-windows.exe /NCRC 

在这里插入图片描述

注意 运行命令后可能还报错,但是会出现弹窗

如果还是报错可以选择zip
在这里插入图片描述
运行
在这里插入图片描述
不设置代理
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
等待下载即可,安装完成
在这里插入图片描述
新建项目
在这里插入图片描述
在这里插入图片描述
第一次耐心等待
在这里插入图片描述

在这里插入图片描述
点击运行
在这里插入图片描述
在这里插入图片描述
即可运行成功,不过这个版本是kotlin版本的,我想换成java版本
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
res下新建layout文件夹,该文件夹下新建activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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=".MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World WWW!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

java下新建MainActivity.java

package com.example.mysendapp;

import android.os.Bundle;
import android.util.Log;
import androidx.appcompat.app.AppCompatActivity;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        Log.d("Main", "onCreate:aaa");
        setContentView(R.layout.activity_main);
    }
}

修改AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <application
        android:allowBackup="true"
        android:dataExtractionRules="@xml/data_extraction_rules"
        android:fullBackupContent="@xml/backup_rules"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.MySendApp"
        tools:targetApi="31">
        <activity
            android:name=".MainActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

在这里插入图片描述
运行项目
在这里插入图片描述

gradle下载失败

gradle腾讯镜像
官方镜像
建议使用迅雷下载
下载好后找到C:\Users\16471\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu
大体路径是这样的,把zip放到bhs2wmbdwecv87pi65oeuq5iu目录下重新启动android studio即可
gradle-src一样的的操作,不过路径不太一样
C:\Users\16471\.gradle\caches\modules-2\files-2.1\gradle\gradle\8.7\9f40849a65e9eea2dbcdae85d2939684160c146
在这里插入图片描述

https://www.jb51.net/program/323415xqb.htm
https://blog.csdn.net/guangdeshishe/article/details/111503153

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部