Android design的扩展,实现CollapsingToolbarLayout的下拉缩放
compile 'com.github.anzewei.design:androidDesignEx:0.6'
<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"></ImageView>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout
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
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.