-
教你如何一分钟实现下拉刷新功能demo
项目中需要用到ListView下拉刷新的功能,可是尝试了多个版本的下拉刷新之后发现效果都不怎么理想。有些是因为功能不完整或有Bug,有些是因为使用起来太复杂,十全十美的还真没找到。因此我也是放弃了在网上找现成代码的想法,自己花功夫编写了一种非常简单的下拉刷新实现方案,现在拿出来和大家分享一下.这里提供的仅是个示例代码。
- 2022-02-11 12:25:58下载
- 积分:1
-
microblink
microblink ocr 抽取某軟件的東西
- 2022-12-20 15:35:04下载
- 积分:1
-
android 很简单的菜单示例
android 很简单的菜单示例
- 2014-05-29下载
- 积分:1
-
android 即录即播
android 录音,即录即播,对试验麦克风很有效果
- 2022-01-22 08:20:44下载
- 积分:1
-
bmi 计算器
计算提示,你要付钱时你付你的餐厅,条例草案计算提示,你要付钱时你付你的餐厅,条例草案计算提示,你要付钱时你付钱计算,你要付钱时你付你的餐厅,条例草案,计算提示,你要付钱时你付你的餐厅,条例草案的提示您的餐厅,条例草案计算提示,你要付钱时你付你的餐厅,条例草案 》
- 2022-01-23 10:21:07下载
- 积分:1
-
MethodInfo
MethodInfo implements AbstractMethodInfo Source Code for Andriod.
- 2013-12-06 12:22:35下载
- 积分:1
-
Android 记事本 APP
Android 记事本APP,有分类,支持增删改查。
- 2023-03-05 23:05:10下载
- 积分:1
-
android SwitchButton 示例源码
android SwitchButton 示例源码
- 2014-07-17下载
- 积分:1
-
Android《戒烟》助手APP源代码
Android《戒烟》助手APP源代码,通过记录用户戒烟开始时间、每日抽烟数量和单价,向用户展示戒烟总时长和节省的费用。此外,用户还可以设定小目标、记录日记等。
软件环境:安卓4.0及以上操作系统。
可设置戒烟开始时间,抽烟数量和单价(以往个人习惯)
记录戒烟时间、节约费用
设置个人戒烟目标、记录日记等。
里面的日期选择器很漂亮哦。
- 2022-07-23 23:03:54下载
- 积分:1
-
Cards-UI-master
卡片式View,支持单个卡片,item为卡片的ListView
使用:
CardListView list = ...
list.setCardTheme(CardTheme.Dark)
CardAdapter adapter = new CardAdapter(this, android.R.color.holo_blue_dark)
list.setAdapter(adapter)
// Alternatively, you can pass a context and string resources in place of strings
// CardHeader has an optional second parameter for a subtitle
CardHeader header = new CardHeader( I m a header )
// You can optionally set an action to the header
// Specifying no action title will default to See More
header.setAction( See More , new CardHeader.ActionListener() {
@Override
public void onHeaderActionClick(CardHeader header) {
// Do whatever you want
}
})
// Add the header to the adapter, automatically notifies the list
adapter.add(header)
// Again, you can pass a context and string resources in place of strings
Card card = new Card( Hello , My name is Aidan )
adapter.add(card) (This library is no longer maintained, as this implementation is generally frowned upon in the new Google Material design guidelines, excluding certain situations (like Google Keep type UI). See the new CardView APIs in the Support Library.)
- 2015-01-24 15:06:35下载
- 积分:1