สาธิตสดบน appetize.io
ตรวจสอบโปรเจ็กต์นี้บน dribbble
อ่านวิธีที่เราทำในบล็อกของเรา
##ความต้องการ
##การใช้งาน
เพิ่มไปยัง root build.gradle ของคุณ:
allprojects {
repositories {
.. .
maven { url " https://jitpack.io " }
}
}
เพิ่มการพึ่งพา:
dependencies {
compile ' com.github.yalantis:todolist:v1.0.1 '
}
เพิ่ม BatRecyclerView
ให้กับเค้าโครง xml ของคุณ
<? xml version = " 1.0 " encoding = " utf-8 " ?>
< LinearLayout xmlns : android = " http://schemas.android.com/apk/res/android "
xmlns : app = " http://schemas.android.com/apk/res-auto "
android : id = " @+id/root "
android : layout_width = " match_parent "
android : layout_height = " match_parent "
android : background = " @drawable/gradient "
android : orientation = " vertical " >
< android .support.v7.widget.Toolbar
android : id = " @+id/toolbar "
android : layout_width = " match_parent "
android : layout_height = " ?android:attr/actionBarSize "
android : background = " @android:color/transparent "
app : logo = " @drawable/ic_menu " >
< TextView
android : id = " @+id/text_title "
android : layout_width = " wrap_content "
android : layout_height = " wrap_content "
android : layout_gravity = " center "
android : text = " 14 Feb, 2016 "
android : textColor = " @android:color/white "
android : textSize = " 20sp " />
</ android .support.v7.widget.Toolbar>
< com .yalantis.beamazingtoday.ui.widget.BatRecyclerView
android : id = " @+id/bat_recycler_view "
android : layout_width = " match_parent "
android : layout_height = " match_parent "
android : layout_gravity = " center_horizontal "
app : add_button_color = " @drawable/selector_button_add "
app : hint = " @string/str_add_goal "
app : radio_button_res = " @drawable/selector_radio_button " />
</ LinearLayout >
สร้าง BatListener
private BatListener mListener = new BatListener () {
@ Override
public void add ( String string ) {
mGoals . add ( 0 , new Goal ( string ));
mAdapter . notify ( AnimationType . ADD , 0 );
}
@ Override
public void delete ( int position ) {
mGoals . remove ( position );
mAdapter . notify ( AnimationType . REMOVE , position );
}
@ Override
public void move ( int from , int to ) {
if ( from >= 0 && to >= 0 ) {
//if you use 'BatItemAnimator'
mAnimator . setPosition ( to );
BatModel model = mGoals . get ( from );
mGoals . remove ( model );
mGoals . add ( to , model );
mAdapter . notify ( AnimationType . MOVE , from , to );
if ( from == 0 || to == 0 ) {
mRecyclerView . getView (). scrollToPosition ( Math . min ( from , to ));
}
}
}
};
สร้าง BatAdapter
ส่งผ่านไปยังรายการตัวสร้างโมเดลและ BatListener
โปรดทราบว่าโมเดลของคุณควรใช้อินเทอร์เฟซ BatModel
mAdapter = new BatAdapter ( mGoals = new ArrayList < BatModel >() {{
add ( new Goal ( "first" ));
add ( new Goal ( "second" ));
add ( new Goal ( "third" ));
add ( new Goal ( "fourth" ));
add ( new Goal ( "fifth" ));
add ( new Goal ( "sixth" ));
add ( new Goal ( "seventh" ));
add ( new Goal ( "eighth" ));
add ( new Goal ( "ninth" ));
add ( new Goal ( "tenth" ));
}}, mListener );
mAdapter . setOnItemClickListener ( new OnItemClickListener () {
@ Override
public void onClick ( BatModel item , int position ) {
Toast . makeText ( ExampleActivity . this , item . getText (), Toast . LENGTH_SHORT ). show ();
}
});
เริ่มต้นมุมมองการรีไซเคิลของคุณ
mRecyclerView . getView (). setLayoutManager ( new LinearLayoutManager ( this ));
mRecyclerView . getView (). setAdapter ( mAdapter );
ItemTouchHelper itemTouchHelper = new ItemTouchHelper ( new BatCallback ( this ));
itemTouchHelper . attachToRecyclerView ( mRecyclerView . getView ());
mRecyclerView . setAddItemListener ( mListener );
คุณสามารถใช้ BatItemAnimator
เพื่อทำให้รายการเคลื่อนไหวได้เหมือนกับในการสาธิตของเรา:
mAnimator = new BatItemAnimator ();
mAdapter = new BatAdapter ( mGoals = new ArrayList < BatModel >() {{
add ( new Goal ( "first" ));
add ( new Goal ( "second" ));
add ( new Goal ( "third" ));
add ( new Goal ( "fourth" ));
add ( new Goal ( "fifth" ));
add ( new Goal ( "sixth" ));
add ( new Goal ( "seventh" ));
add ( new Goal ( "eighth" ));
add ( new Goal ( "ninth" ));
add ( new Goal ( "tenth" ));
}}, mListener , mAnimator );
mRecyclerView . getView (). setItemAnimator ( mAnimator );
คุณต้องส่งอินสแตนซ์แอนิเมเตอร์ไปที่ BatRecyclerView
และ BatAdapter
นอกจากนี้ยังจำเป็นต้องผ่านตำแหน่งของรายการที่ถูกย้ายในการเรียกกลับ move()
:
@ Override
public void move ( int from , int to ) {
if ( from >= 0 && to >= 0 ) {
mAnimator . setPosition ( to );
BatModel model = mGoals . get ( from );
mGoals . remove ( model );
mGoals . add ( to , model );
mAdapter . notify ( AnimationType . MOVE , from , to );
if ( from == 0 || to == 0 ) {
mRecyclerView . getView (). scrollToPosition ( Math . min ( from , to ));
}
}
}
หากต้องการตัวอย่างการใช้งานเพิ่มเติม โปรดตรวจสอบแอปตัวอย่าง
cursor_drawable
และเมธอด setCursorDrawable(@DrawableRes int res)
แล้ว ควรใช้แทนแอตทริบิวต์ cursor_color
และเมธอด setCursorColor(@ColorInt int color)
ตามลำดับ เรายินดีเป็นอย่างยิ่งหากคุณสามารถส่งลิงก์ไปยังโครงการของคุณที่คุณใช้ส่วนประกอบของเราให้กับเรา เพียงส่งอีเมลไปที่ [email protected] และแจ้งให้เราทราบหากคุณมีคำถามหรือข้อเสนอแนะเกี่ยวกับแอนิเมชั่น
ป.ล. เราจะเผยแพร่ความเจ๋งเพิ่มเติมที่รวมอยู่ในโค้ดและบทช่วยสอนเกี่ยวกับวิธีทำให้ UI สำหรับ iOS (Android) ดีขึ้นกว่าเดิม คอยติดตาม!
The MIT License (MIT)
Copyright © 2017 Yalantis, https://yalantis.com
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.