我是靠谱客的博主 火星上万宝路,这篇文章主要介绍Github上一些好用的开源项目(随时记录),现在分享给大家,希望可以做个参考。

1、RecyclerViewSwipeDismiss(滑动删除recycleView)

项目地址 https://github.com/CodeFalling/RecyclerViewSwipeDismiss

使用:1、导入libary文件到项目中;

           2、添加监听器

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
SwipeDismissRecyclerViewTouchListener listener = new SwipeDismissRecyclerViewTouchListener.Builder( recyclerView, new SwipeDismissRecyclerViewTouchListener.DismissCallbacks() { @Override public boolean canDismiss(int position) { return true; } @Override public void onDismiss(View view) { // 当删除了一个后,要做什么事 } }) .setIsVertical(false)//是否纵向删除 .setItemTouchCallback( new SwipeDismissRecyclerViewTouchListener.OnItemTouchCallBack() { @Override public void onTouch(int index) { // 触摸处理事件 } }) .setItemClickCallback(new SwipeDismissRecyclerViewTouchListener.OnItemClickCallBack() { @Override public void onClick(int position) { // 点击处理事件 }) .setBackgroundId(R.drawable.bg_item_normal, R.drawable.bg_item_selected) .create(); recyclerView.setOnTouchListener(listener);
复制代码
1
这样就可以用了
复制代码
1
复制代码
1
2、Side Menu(动画菜单)
复制代码
1
项目地址:https://github.com/Yalantis/Context-Menu.Android
复制代码
1
使用方法:
复制代码
1
1、导入libiary
复制代码
1
2、在主布局中include toolbar的布局
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
复制代码
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar"
    app:theme="@style/ThemeOverlay.AppCompat.ActionBar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:minHeight="?attr/actionBarSize"
    android:background="?attr/colorPrimary">

    <TextView
        android:id="@+id/text_view_toolbar_title"
        android:layout_centerInParent="true"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:textColor="@color/text_color"
        android:textSize="@dimen/tool_bar_text_size"
        android:gravity="center" />

</android.support.v7.widget.Toolbar>
3、设置菜单按钮以及安装监听器
复制代码
void initMenuObjects()
{
    MenuParams menuParams = new MenuParams();
    menuParams.setActionBarSize((int)getResources().getDimension(R.dimen.tool_bar_height));
    menuParams.setMenuObjects(getMenuObjects());
    menuParams.setClosableOutside(true);
    mMenuDialogFragment = ContextMenuDialogFragment.newInstance(menuParams);
    mMenuDialogFragment.setItemClickListener(this);
    mMenuDialogFragment.setItemLongClickListener(this);


}
复制代码
4、设置菜单选项
复制代码
复制代码
List<MenuObject>  getMenuObjects()
{
    List<MenuObject> list = new ArrayList<MenuObject>();
    MenuObject send = new MenuObject("frist");
    send.setResource(R.drawable.icn_1);
    MenuObject back  = new MenuObject("back");
    back.setResource(R.drawable.icn_2);
    list.add(send);
    list.add(back);
    return list;

}
复制代码
5、显示菜单
复制代码
复制代码
在oncreate 中获取fragmentManager =getSupportFragmentManager();
复制代码
重写方法
复制代码
@Override
public boolean onCreateOptionsMenu(Menu menu) {//创建菜单时调用
    MenuInflater inflater = getMenuInflater();
    inflater.inflate(R.menu.menu,menu);//菜单的布局文件,新建一个item id为menu,就是我们要展示的菜单。
    return true;//return true 表示显示,
}

public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
        case R.id.menu:
            if (fragmentManager.findFragmentByTag(ContextMenuDialogFragment.TAG) == null) {//判断有无对象存在
                mMenuDialogFragment.show(fragmentManager, ContextMenuDialogFragment.TAG);
                Toast.makeText(this, "getsimplename"+ContextMenuDialogFragment.TAG, Toast.LENGTH_SHORT).show();
            }
            break;
    }
    return super.onOptionsItemSelected(item);
}
复制代码
通过以上步骤,基本完成使用。
复制代码
复制代码
复制代码
3、加载动画Android-spkit
效果如下
复制代码
复制代码
项目地址 https://github.com/ybq/Android-SpinKit
复制代码
使用说明:1、在gradle文件下添加如下语句
复制代码
复制代码
```gradle
allprojects {
			repositories {
				...
				maven { url "https://jitpack.io" }
			}
}
```
2、导入libiary。
复制代码
3、在代码里实现有两种方式。①直接实现,例如textview上添加动画:
复制代码
复制代码
mCircleDrawable = new Circle();//圆圈型加载动画
mCircleDrawable.setBounds(0, 0, 100, 100);
mCircleDrawable.setColor(Color.BLACK);//动画的颜色
textView.setCompoundDrawables(null, null, mCircleDrawable, null);//位置,分别为左上右下
textView.setBackgroundColor(colors[2]);
复制代码
②xml方式
复制代码
复制代码
<com.github.ybq.android.spinkit.SpinKitView
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/spin_kit"
    style="@style/SpinKitView.Large.Circle"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    app:SpinKit_Color="@color/colorAccent" />    
当做一个控件添加到需要的地方就行了。


最后

以上就是火星上万宝路最近收集整理的关于Github上一些好用的开源项目(随时记录)的全部内容,更多相关Github上一些好用内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(83)

评论列表共有 0 条评论

立即
投稿
返回
顶部