Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

trycatchx/VideoProgressView

Repository files navigation

LightProgressView + VolumeProgressView

Build Status java java

Englist | 中文版本

A creative brightness animation, which controls the brightness of the mobile phone screen by swiping up and down. The animation changes from the sun (the day is bright) to the moon (the night is dark), a very beautiful screen brightness animation!

Design sketch

2020年05月03日 01_00_28.gif 2020年05月05日 18_09_07.gif

Usage:

  • Setting up the dependency by mavenCentral()

(削除) implementation 'com.cj.videoprogressview:progressview:1.0.0' (削除ここまで)

implementation 'io.github.zhangchaojiong:videoprogressview:1.1.1'
  • Simple use cases will look something like this:
<com.cj.videoprogressview.LightProgressView
 android:id="@+id/lpv"
 android:padding="10dp"
 android:background="@drawable/bg_center_window"
 android:layout_width="88dp"
 android:layout_height="88dp"
 app:lpv_halo_color="@android:color/white"
 app:lpv_moon_color="@android:color/white"
 app:lpv_halo_height="7dp"
 app:lpv_halo_width="2dp"/>
<com.cj.videoprogressview.VolumeProgressView
 android:id="@+id/vpv"
 android:layout_marginLeft="3dp"
 android:padding="10dp"
 android:background="@drawable/bg_center_window"
 android:layout_width="88dp"
 android:layout_height="88dp"
 app:vpv_halo_color="@android:color/white"
 app:vpv_halo_height="7dp"
 app:vpv_halo_width="2dp"
 />
//Set progress to control animation
(LightProgressView)findViewById(R.id.lpv).setProgress(0.5f);
(VolumeProgressView)findViewById(R.id.vpv).setProgress(0.6f);

Styleable

 <declare-styleable name="LightProgressView">
 //Halo length
 <attr format="dimension" name="lpv_halo_height"/> 
 //Halo thickness
 <attr format="dimension" name="lpv_halo_width"/>
 //Number of halos
 <attr format="integer" name="lpv_num_of_halo"/>
 //The curvature of the moon, the default value is 0.43f
 <attr format="float" name="lpv_magicnum"/>
 //The color of the moon
 <attr format="color" name="lpv_moon_color"/>
 //The color of the halo
 <attr format="color" name="lpv_halo_color"/>
 </declare-styleable>
 <declare-styleable name="VolumeProgressView">
 //Halo length
 <attr format="dimension" name="vpv_halo_height"/>
 //Halo thickness
 <attr format="dimension" name="vpv_halo_width"/>
 //Number of halos
 <attr format="integer" name="vpv_num_of_halo"/>
 //Customize pictures with low volume
 <attr format="integer" name="vpv_volume_low"/>
 //Customize pictures with medium volume
 <attr format="integer" name="vpv_volume_medium"/>
 //Customize pictures with high volume
 <attr format="integer" name="vpv_volume_high"/>
 //The color of the halo
 <attr format="color" name="vpv_halo_color"/>
 </declare-styleable>

Deductive Reasoning

License

Copyright (C) 2020 chaojiong.zhang
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.

About

Moon brightness animation + volume animation. Suitable for playing video to adjust volume and brightness

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

AltStyle によって変換されたページ (->オリジナル) /