All Projects → anzewei → Android-DesignEx

anzewei / Android-DesignEx

Licence: Apache-2.0 license
Android design的扩展,实现CollapsingToolbarLayout的下拉缩放

Programming Languages

java
68154 projects - #9 most used programming language

androidDesignEx

##包含两个Design的扩展

  • 1 ParallaxScaleBehavior 下拉缩放CollapsingToolbarLayout中的image
  • 2 CollapsingCenterLayout 居中显示title的CollapsingToolbarLayout

# Demo Apk

下载

使用

Download

Step 1

  • 添加以下代码到 build.gradle
compile 'com.github.anzewei.design:androidDesignEx:0.6'

ParallaxScaleBehavior的使用

  • 为AppBarLayout 设置Behavior,CollapsingToolbarLayout的第一个child用于缩放,如果为AppBarLayout的第一个child不是CollapsingToolbarLayout,将会使用id为image的view
    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_behavior="android.support.design.widget.ParallaxScaleBehavior">
		<android.support.design.widget.CollapsingToolbarLayout>
			<ImageView 
               android:id="@id/image"/>
		</android.support.design.widget.CollapsingToolbarLayout>
	</android.support.design.widget.AppBarLayout

CollapsingCenterLayout的使用

CollapsingCenterLayout继承自CollapsingToolbarLayout,用法和CollapsingToolbarLayout相同
   <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_behavior="android.support.design.widget.ParallaxScaleBehavior">
		<com.github.anzewei.design.CollapsingCenterLayout>
			...
		</com.github.anzewei.design.CollapsingCenterLayout>
	</android.support.design.widget.AppBarLayout

License

Copyright 2015 anzewei

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].