-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
af6c14d
commit bec5997
Showing
41 changed files
with
1,102 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
# AmazingAvatar | ||
|
||
An android amazing avatar anim in CollapsingToolbarLayout. | ||
|
||
## Screenshot | ||
<img src="https://raw.githubusercontent.com/hearsilent/AmazingAvatar/master/screenshots/screenrecord.gif" height="500"> | ||
|
||
### Expanded | ||
<img src="https://raw.githubusercontent.com/hearsilent/AmazingAvatar/master/screenshots/caf28b9c-42e8-40c7-a68e-7a069e4e9123.png" height="500"> | ||
### Collapsed | ||
<img src="https://raw.githubusercontent.com/hearsilent/AmazingAvatar/master/screenshots/fc2af320-da03-42ec-ac79-723ec75a3fad.png" height="500"> | ||
|
||
# Usage | ||
|
||
Just Clone and Build. | ||
|
||
# Customization | ||
|
||
You can change header view to what you want. | ||
```xml | ||
<android.support.design.widget.CollapsingToolbarLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="224dp" | ||
app:contentScrim="@android:color/transparent" | ||
app:layout_scrollFlags="scroll|exitUntilCollapsed" | ||
app:statusBarScrim="@android:color/transparent" | ||
app:titleEnabled="false"> | ||
|
||
<android.support.v7.widget.Toolbar | ||
android:id="@+id/toolbar" | ||
android:layout_width="match_parent" | ||
android:layout_height="?attr/actionBarSize" | ||
app:layout_collapseMode="pin" | ||
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/> | ||
|
||
<LinearLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="?attr/actionBarSize" | ||
android:gravity="center_vertical" | ||
app:layout_collapseMode="parallax" | ||
app:layout_collapseParallaxMultiplier="1"> | ||
|
||
<android.support.v4.widget.Space | ||
android:id="@+id/space" | ||
android:layout_width="32dp" | ||
android:layout_height="32dp" | ||
android:layout_marginLeft="32dp"/> | ||
|
||
<TextView | ||
android:id="@+id/toolbar_title" | ||
style="@style/TextAppearance.Widget.AppCompat.Toolbar.Title" | ||
android:layout_width="match_parent" | ||
android:layout_height="?attr/actionBarSize" | ||
android:gravity="center_vertical"/> | ||
</LinearLayout> | ||
|
||
<FrameLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
app:layout_collapseMode="parallax" | ||
app:layout_collapseParallaxMultiplier="1"> | ||
|
||
<de.hdodenhof.circleimageview.CircleImageView | ||
android:id="@+id/imageView_avatar" | ||
android:layout_width="80dp" | ||
android:layout_height="80dp" | ||
android:layout_gravity="center_horizontal" | ||
android:layout_marginTop="?attr/actionBarSize" | ||
android:background="@drawable/avatar_background" | ||
android:contentDescription="@null" | ||
android:padding="1dp"/> | ||
|
||
<TextView | ||
android:id="@+id/textView_title" | ||
android:layout_width="wrap_content" | ||
android:layout_height="?attr/actionBarSize" | ||
android:layout_gravity="center_horizontal" | ||
android:layout_marginTop="130dp" | ||
android:gravity="center" | ||
android:maxLines="1" | ||
android:text="HearSilent" | ||
android:textColor="#FFF" | ||
android:textSize="24sp"/> | ||
</FrameLayout> | ||
</android.support.design.widget.CollapsingToolbarLayout> | ||
``` | ||
|
||
## Compatibility | ||
|
||
Android GINGERBREAD 4.1+ | ||
|
||
## Credits | ||
|
||
Avatars from [maximedegreve/TinyFaces](https://github.com/maximedegreve/TinyFaces). | ||
|
||
### Let me know! | ||
|
||
I'd be really happy if you sent me links to your projects where you use my component. Just send an email to hear.silent1995@gmail.com And do let me know if you have any questions or suggestion regarding the example. | ||
|
||
## License | ||
|
||
MIT License | ||
|
||
Copyright (c) 2017 HearSilent | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
apply plugin: 'com.android.application' | ||
|
||
android { | ||
compileSdkVersion 25 | ||
buildToolsVersion "25.0.2" | ||
defaultConfig { | ||
applicationId "hearsilent.amazingavatar" | ||
minSdkVersion 16 | ||
targetSdkVersion 25 | ||
versionCode 100 | ||
versionName "1.0.0" | ||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | ||
} | ||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
compile fileTree(dir: 'libs', include: ['*.jar']) | ||
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { | ||
exclude group: 'com.android.support', module: 'support-annotations' | ||
}) | ||
compile 'com.android.support:appcompat-v7:25.2.0' | ||
compile 'com.android.support:recyclerview-v7:25.2.0' | ||
compile 'com.android.support:design:25.2.0' | ||
compile 'de.hdodenhof:circleimageview:2.1.0' | ||
compile 'com.loopj.android:android-async-http:1.4.9' | ||
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5' | ||
testCompile 'junit:junit:4.12' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Add project specific ProGuard rules here. | ||
# By default, the flags in this file are appended to flags specified | ||
# in D:\Program\AndroidSDK/tools/proguard/proguard-android.txt | ||
# You can edit the include path and order by changing the proguardFiles | ||
# directive in build.gradle. | ||
# | ||
# For more details, see | ||
# http://developer.android.com/guide/developing/tools/proguard.html | ||
|
||
# Add any project specific keep options here: | ||
|
||
# If your project uses WebView with JS, uncomment the following | ||
# and specify the fully qualified class name to the JavaScript interface | ||
# class: | ||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { | ||
# public *; | ||
#} | ||
|
||
# Uncomment this to preserve the line number information for | ||
# debugging stack traces. | ||
#-keepattributes SourceFile,LineNumberTable | ||
|
||
# If you keep the line number information, uncomment this to | ||
# hide the original source file name. | ||
#-renamesourcefileattribute SourceFile |
26 changes: 26 additions & 0 deletions
26
app/src/androidTest/java/hearsilent/amazingavatar/ExampleInstrumentedTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package hearsilent.amazingavatar; | ||
|
||
import android.content.Context; | ||
import android.support.test.InstrumentationRegistry; | ||
import android.support.test.runner.AndroidJUnit4; | ||
|
||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
|
||
import static org.junit.Assert.*; | ||
|
||
/** | ||
* Instrumentation test, which will execute on an Android device. | ||
* | ||
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a> | ||
*/ | ||
@RunWith(AndroidJUnit4.class) public class ExampleInstrumentedTest { | ||
|
||
@Test | ||
public void useAppContext() throws Exception { | ||
// Context of the app under test. | ||
Context appContext = InstrumentationRegistry.getTargetContext(); | ||
|
||
assertEquals("hearsilent.amazingavatar", appContext.getPackageName()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest package="hearsilent.amazingavatar" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
<uses-permission android:name="android.permission.INTERNET"/> | ||
|
||
<application | ||
android:name=".base.BaseApplication" | ||
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:name="android.intent.action.MAIN"/> | ||
|
||
<category android:name="android.intent.category.LAUNCHER"/> | ||
</intent-filter> | ||
</activity> | ||
</application> | ||
|
||
</manifest> |
Oops, something went wrong.