项目作者: IKKIson

项目描述 :
Android App Animation Test in Android Studio 3.0
高级语言: Java
项目地址: git://github.com/IKKIson/AnimationSample.git
创建时间: 2018-01-22T01:03:18Z
项目社区:https://github.com/IKKIson/AnimationSample

开源协议:

下载


AnimationSample

Android App Animation Test in Android Studio 3.0

Error Report

Version Error After Android Studio 3.0 Update

1. AAPT2 error

  • Error Report
    1. Error:failed processing manifest.
    2. Error:java.util.concurrent.ExecutionException: java.util.concurrent.ExecutionException: com.android.tools.aapt2.Aapt2Exception: AAPT2 error: check logs for details
    3. Error:java.util.concurrent.ExecutionException: com.android.tools.aapt2.Aapt2Exception: AAPT2 error: check logs for details
    4. Error:com.android.tools.aapt2.Aapt2Exception: AAPT2 error: check logs for details
    5. Error:Execution failed for task ':app:processDebugResources'.
    6. > Failed to execute aapt
  • Aapt2 is enabled by default when you use android plugin for gradle 3.0.
  • But if you are facing issues with it, you can switch back to previous version by adding this in gradle.properties
  • Solution - gradle.properties

    1. android.enableAapt2=false

2. No Show a XML layout preview

  • Error Report
    1. Exception raised during rendering: Could not initialize class android.graphics.Typeface
    2. java.lang.NoClassDefFoundError: Could not initialize class android.graphics.Typeface
  • Error Message
    1. android studio could not initialize class android.graphics.Typeface
  • Problem

    • Problems with Breaking of Korean in Layout Preview
    • If you modify fonts.xml in 2.x var, you may get this error if you update to 3.0.
    • If you check the fonts.xml for errors after updating to 3.0, the xml file is broken in the middle.
    • If it is not the default fonts.xml, But the modified fonts.xml, it appears that updating the android studio 3.0 fails to update the fonts.xml.
      1. <family lang="ko">
      2. <font weight="400" style="normal" index="1">NanumGothic.ttf</font>
      3. </family>
  • Solution

Device’s Display - Different Screen Sizes and Densities of Anroid OS

Using Screens

Screen Dimensions Width x Height (PX : Pixel) width x Height (DP : Density Independent Pixel) Aspect Ratio Density Directory Naming of layout
10 Inch(Landscape Tablet) 2560 x 1600 1280 x 800 16 : 10 x2.0 xhdpi layout-sw720dp, drawable-xhdpi(drawable-sw720dp-xhdpi)
7 Inch(Tablet) 1200 x 1920 600 x 960 16 : 10 x2.0 xhdpi layout-sw600dp, drawable-xhdpi(drawable-sw600dp-xhdpi)
Full HD(Based Display) 1080 x 1920 360 x 640 16 : 9 x3.0 xxhdpi layout-xxhdpi, drawable-xxhdpi
Full HD(Some other models) - - - x3.0 xxhdpi layout-sw400dp-xxhdpi, drawable-xxhdpi
QHD(Quad Full HD) 1440 x 2960 369 x 740 18.5 : 9 x4.0 xxxhdpi layout-xxxhdpi, drawable-xxxhdpi

Screens Directory(in Android OS)

  • For smartphones and phablets
    • layout-mdpi
    • layout-hdpi
    • layout-xhdpi
    • layout-xxhdpi
  • For 7” tablets
    • layout-sw600dp
  • For 10” tablets
    • layout-sw720dp

Dp(dip), Px, Dpi

  1. DPI(Dot Per Inch)
  • A unit of pixels representing an inch of a pixel (2.54 cm) per inch.

  • ldpi => 120dpi (120px / 1inch)

  • mdpi => 160dpi (160px / 1inch)

  • hdpi => 240dpi (240px / 1inch)

  • xhdpi => 320dpi (320 px / 1inch)

  • xxhdpi => 480dpi (480 px / 1inch)

  • xxxhdpi => 640dpi (640 px / 1inch)

  1. DP(DIP) - Density Independent Pixel
  • It is a unit defined for various screens of Android devices regardless of pixel in pixel-independent unit.

  • This unit allows you to show objects of the same size on a larger terminal or on a smaller terminal.

  • You can optionally apply the layout to use in the layout resource folder.

  • After reousrce folder, sw360dp can be applied by selecting xxxhdpi (resource folder supporting 360dp horizontal size xxxhpdi).

    • ex) (folder name) layout-sw360dp-xxxhdpi
  1. Pixel(px)
  • The actual pixel unit of the screen.

  • On the mdpi screen, 1dp is 1pixel.

  1. Interchange between Pixel and DP

Animation Library

Lottie - Effect, View, Check, Loading Animation

1. Set this Library

  1. build.gradle - Modules

    1. dependencies {
    2. implementation fileTree(dir: 'libs', include: ['*.jar'])
    3. implementation 'com.android.support:appcompat-v7:26.1.0'
    4. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    5. testImplementation 'junit:junit:4.12'
    6. androidTestImplementation 'com.android.support.test:runner:1.0.1'
    7. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
    8. /* Animation Library */
    9. //Lotti - Android
    10. //https://github.com/airbnb/lottie-android
    11. compile 'com.airbnb.android:lottie:2.5.0-beta3'
    12. }
  2. Layout

  • Set : xmlns:app=”http://schemas.android.com/apk/res-auto
    ```markdown
    <?xml version=”1.0” encoding=”utf-8”?>

    <com.airbnb.lottie.LottieAnimationView

    1. android:id="@+id/animation_view"
    2. android:layout_width="match_parent"
    3. android:layout_height="match_parent"
    4. app:lottie_fileName="md_logo_animation.json"
    5. app:lottie_loop="true"
    6. app:lottie_autoPlay="true" ></com.airbnb.lottie.LottieAnimationView>

  1. 3. Using
  2. - 1) Simple (Synchronous)
  3. ```markdown
  4. <com.airbnb.lottie.LottieAnimationView
  5. android:id="@+id/animation_view"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. app:lottie_fileName="md_logo_animation.json"
  9. app:lottie_loop="true"
  10. app:lottie_autoPlay="true" ></com.airbnb.lottie.LottieAnimationView>
  • 2) Programmatically (Asynchronous)
    1. [In Java]
    2. animationView = (LottieAnimationView) findViewById(R.id.animation_view);
    3. animationView.setAnimation("hello-world.json");
    4. animationView.loop(true);
    5. animationView.playAnimation();

Resource

  1. About Lottie
  1. .json
  1. How to use