Android App Animation Test in Android Studio 3.0
Android App Animation Test in Android Studio 3.0
1. AAPT2 error
Error:failed processing manifest.
Error:java.util.concurrent.ExecutionException: java.util.concurrent.ExecutionException: com.android.tools.aapt2.Aapt2Exception: AAPT2 error: check logs for details
Error:java.util.concurrent.ExecutionException: com.android.tools.aapt2.Aapt2Exception: AAPT2 error: check logs for details
Error:com.android.tools.aapt2.Aapt2Exception: AAPT2 error: check logs for details
Error:Execution failed for task '
processDebugResources'.
> Failed to execute aapt
Solution - gradle.properties
android.enableAapt2=false
2. No Show a XML layout preview
Exception raised during rendering: Could not initialize class android.graphics.Typeface
java.lang.NoClassDefFoundError: Could not initialize class android.graphics.Typeface
android studio could not initialize class android.graphics.Typeface
Problem
<family lang="ko">
<font weight="400" style="normal" index="1">NanumGothic.ttf</font>
</family>
Solution
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 |
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)
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).
The actual pixel unit of the screen.
On the mdpi screen, 1dp is 1pixel.
The relationship between DP and Pixel can be used to convert from one to another. I think it will be more memorable to understand than to memorize the formula.
px = dp * dpi / 160 = dp * density
dp = dp * 160 / dpi = px / density
density = dpi / 160
dpi is a value determined by the terminal
For example, if the terminal supports mdpi, dpi is 160, so 1dp 160/160 = 1pixel.
| In addition, in the case of pixel calculation of 3dp, terminal supporting xxhdpi Since 3dp 480/160 = 9 pixels, 3dp of xxhdpi terminal becomes 9pixel.
http://rojhw.tistory.com/23 [grow up]
build.gradle - Modules
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support
26.1.0'
implementation 'com.android.support.constraint
1.0.2'
testImplementation 'junit
4.12'
androidTestImplementation 'com.android.support.test
1.0.1'
androidTestImplementation 'com.android.support.test.espresso
3.0.1'
/* Animation Library */
//Lotti - Android
//https://github.com/airbnb/lottie-android
compile 'com.airbnb.android
2.5.0-beta3'
}
Layout
Set : xmlns:app=”http://schemas.android.com/apk/res-auto“
```markdown
<?xml version=”1.0” encoding=”utf-8”?>
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/animation_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:lottie_fileName="md_logo_animation.json"
app:lottie_loop="true"
app:lottie_autoPlay="true" ></com.airbnb.lottie.LottieAnimationView>
3. Using
- 1) Simple (Synchronous)
```markdown
<com.airbnb.lottie.LottieAnimationView
android:id="@+id/animation_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:lottie_fileName="md_logo_animation.json"
app:lottie_loop="true"
app:lottie_autoPlay="true" ></com.airbnb.lottie.LottieAnimationView>
[In Java]
animationView = (LottieAnimationView) findViewById(R.id.animation_view);
animationView.setAnimation("hello-world.json");
animationView.loop(true);
animationView.playAnimation();