Sliding Drawer
SlidingDrawer hides content out of the screen and allows the user to drag a handle to bring the content on screen. SlidingDrawer can be used vertically or horizontally.
A special widget composed of two children views: the handle, that the users drags, and the content, attached to the handle and dragged with it.
SlidingDrawer should be used as an overlay inside layouts. This means SlidingDrawer should only be used inside of a FrameLayout or a RelativeLayout for instance.
The size of the SlidingDrawer defines how much space the content will occupy once slid out so SlidingDrawer should usually use match_parent
for both its dimensions.
More :)
Setup
dependencies {
implementation 'com.github.moraisigor:slidingdrawer:1.7.1'
}
Example
In Layout
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:layout="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#f1582a">
<hollowsoft.slidingdrawer.SlidingDrawer
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
layout:content="@+id/content"
layout:handle="@+id/handle">
<TextView
android:id="@id/handle"
android:layout_width="match_parent"
android:layout_height="75dp"
android:background="#122631"
android:gravity="center"
android:text="Handle"
android:textAllCaps="true"
android:textColor="@android:color/white"
android:textSize="20sp"
android:textStyle="bold" />
<TextView
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="Content"
android:textAllCaps="true"
android:textColor="@android:color/white"
android:textSize="20sp"
android:textStyle="bold" />
</hollowsoft.slidingdrawer.SlidingDrawer>
</LinearLayout>
In Code
public final class MainActivity extends AppCompatActivity implements OnDrawerScrollListener, OnDrawerOpenListener, OnDrawerCloseListener {
private static final String TAG = MainActivity.class.getSimpleName();
@Override
protected void onCreate(Bundle bundle) {
super.onCreate(bundle);
setContentView(R.layout.main);
final SlidingDrawer drawer = (SlidingDrawer) findViewById(R.id.drawer);
drawer.setOnDrawerScrollListener(this);
drawer.setOnDrawerOpenListener(this);
drawer.setOnDrawerCloseListener(this);
}
@Override
public void onScrollStarted() {
Log.d(TAG, "onScrollStarted()");
}
@Override
public void onScrollEnded() {
Log.d(TAG, "onScrollEnded()");
}
@Override
public void onDrawerOpened() {
Log.d(TAG, "onDrawerOpened()");
}
@Override
public void onDrawerClosed() {
Log.d(TAG, "onDrawerClosed()");
}
}
Check the sample for more details.
Contact
License
Copyright 2014 Igor Morais
Copyright (C) 2008 The Android Open Source Project
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.