Giter Club home page Giter Club logo

alphalayout's Introduction

AlphaLayout

This project depends on another project called PullToRefresh written by me.

Twitter

Preview

1. sample_ListView (with viewpager)

2. sample_RecyclerView

3. sample_ScrollView

Usage

  • Add jitpack repository to your root build file
allprojects {
    repositories {
        ...
        maven { url "https://jitpack.io" }
    }
}
  • Add the dependency
dependencies {
    compile 'com.github.lubeast:AlphaLayout:1.0.0'
}
  • Add AlphaLayout widget in your layout
<com.alhpalayout.AlphaLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/alpha_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:headerLayout="@layout/layout_header"
    app:transparent_distance="150dp"
    tools:context="com.alphalayout.activity.ListSampleActivity">

    <ListView
        android:id="@+id/list_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:divider="@null"
        android:dividerHeight="0dp" />

</com.alhpalayout.AlphaLayout>
  • implements AlphaLayout.OnRefreshListener in your Activity
    @Override
    public void onRefresh() {
        alphaLayout.postDelayed(new Runnable() {
            @Override
            public void run() {
                alphaLayout.setRefreshing(false);
            }
        }, REFRESH_DELAY);
    }

    @Override
    public void onScroll(int direction, float percent) {
        if (direction == AlphaLayout.DIRECTION_DOWN) {
            ViewCompat.setAlpha(alphaLayout.getHeaderLayout(), 1.0f - percent);
        } else {
            alphaLayout.getHeaderLayout().getBackground().setAlpha((int) (255 * percent));
            mTitleView.getBackground().mutate().setAlpha((int) (255 * (1 - percent)));
        }
    }

Attention

  • You should use AlphaScrollView which been provided instead of ScrollView.
  • I also provided AlphaHeaderLayout which can make good performance easily.

See sample project for detail

Download Sample apk

1. Fir.im

#### 2.download apk directly [release_1.0.0_github.apk](https://raw.githubusercontent.com/lubeast/alphalayout/master/art/alpha-release-1.0.0-github.apk)

alphalayout's People

Contributors

lumenghz avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.