Android Animated Icons 项目教程

Android Animated Icons 项目教程

Android-Animated-IconsHow to improve the user experience using animated icons with vector drawables on Android项目地址:https://gitcode.com/gh_mirrors/an/Android-Animated-Icons

1. 项目的目录结构及介绍

Android-Animated-Icons/
├── app/
│   ├── build.gradle
│   ├── src/
│   │   ├── main/
│   │   │   ├── java/
│   │   │   │   └── com/
│   │   │   │       └── andremion/
│   │   │   │           └── animatedicons/
│   │   │   │               ├── MainActivity.java
│   │   │   │               └── ...
│   │   │   ├── res/
│   │   │   │   ├── drawable/
│   │   │   │   ├── layout/
│   │   │   │   ├── mipmap/
│   │   │   │   └── values/
│   │   │   └── AndroidManifest.xml
│   └── ...
├── build.gradle
├── settings.gradle
└── ...
  • app/: 包含应用程序的主要代码和资源。
    • build.gradle: 应用程序的构建脚本。
    • src/main/: 主要源代码和资源文件夹。
      • java/com/andremion/animatedicons/: 包含主要的Java代码。
        • MainActivity.java: 应用程序的主活动。
      • res/: 包含应用程序的资源文件,如布局、图片和字符串。
      • AndroidManifest.xml: 应用程序的清单文件,定义应用程序的组件和权限。
  • build.gradle: 项目的根构建脚本。
  • settings.gradle: 项目的设置文件,包含项目模块的配置。

2. 项目的启动文件介绍

项目的启动文件是 MainActivity.java,位于 app/src/main/java/com/andremion/animatedicons/ 目录下。这个文件是应用程序的主活动,负责初始化用户界面和处理用户交互。

package com.andremion.animatedicons;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}

3. 项目的配置文件介绍

build.gradle (项目级)

// 项目级 build.gradle 文件
buildscript {
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.3'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

build.gradle (应用级)

// 应用级 build.gradle 文件
apply plugin: 'com.android.application'

android {
    compileSdkVersion 29
    defaultConfig {
        applicationId "com.andremion.animatedicons"
        minSdkVersion 16
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
}

AndroidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.andremion.animatedicons">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action

Android-Animated-IconsHow to improve the user experience using animated icons with vector drawables on Android项目地址:https://gitcode.com/gh_mirrors/an/Android-Animated-Icons

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

嵇千知

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值