SceneryView
Introduction: 🏜 The scenery is unique here~ 自定义 View,圆、三角形、云朵,平移及旋转动画。
Tags:
🏜 Hand-painted scenery, let it fly~
1.SceneryView

- 原型来自 dribbble:Gallery App Icon
- 对应文章:《自定义 View 实现 Dribbble 上动感的 Gallery App Icon》
2.HorizontalWaveProgressView
Usage
Gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.youlookwhat:SceneryView:1.0.1'
}
In layout.xml
<me.jingbin.scenery.SceneryView
android:id="@+id/scenery"
android:layout_width="100dp"
android:layout_height="100dp"
app:background_color="#2483D9"
app:cloud_color="#0000FF"
app:left_mountain_color="#e0e0e0"
app:mid_mountain_color="#ff0000"
app:right_mountain_color="#e0e0e0"
app:sun_color="#ffff00" />
In code
SceneryView sceneryIcon = findViewById(R.id.scenery_icon);
sceneryIcon.setCloudColor(Color.parseColor("#0000FF"));
sceneryIcon.setColorBackground(Color.parseColor("#2483D9"));
sceneryIcon.setMidMouColor(Color.parseColor("#ff0000"));
sceneryIcon.setLeftMouColor(Color.parseColor("#e0e0e0"));
sceneryIcon.setRightMouColor(Color.parseColor("#e0e0e0"));
sceneryIcon.setSunColor(Color.parseColor("#ffff00"));
sceneryIcon.playAnimator();
sceneryIcon.setOnAnimationListener(new SceneryView.AnimationListener() {
@Override
public void onAnimationEnd() {
}
});
License
Copyright 2020 jingbin
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
