-
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
-
android listview实现复选框列表
android listview实现复选框列表
- 2015-04-22下载
- 积分:1
-
pushbox
安卓程序设计 小游戏 推箱子游戏,初级,适合看代码学习方法(Andrews programming game Sokoban game, junior, suitable to look at the code learning methods)
- 2020-12-21 15:29:10下载
- 积分:1
-
A lightweight, well designed metronome app for Android
Metronome is a lightweight, well designed metronome app for Android focused on offering a consistent and usable design without limiting functionality.
- 2018-01-01下载
- 积分:1
-
android 底部tab签实例源码下载(Fragment实现)
android 底部tab签实例源码下载(Fragment实现)
- 2015-01-23下载
- 积分:1
-
android opencl 示例
简单的android open cl代码示例。科学计算可以参考。
- 2022-01-28 01:48:09下载
- 积分:1
-
stagefright_h264
android源码中提取的h264编解码部分(android H264 encoder & decoder source code)
- 2011-12-27 18:03:49下载
- 积分:1
-
Android 断点续传下载 支持暂停功能
一个支持暂停下载的Android断点续传源码,通过这个源码实例,你将学习一下如何实现上传和下载文件时的断点续传功能,设置当前线程下载的起点,终点,设置断点续传的开始位置,设置User-Agent ,使用java中的RandomAccessFile 对文件进行随机读写操作,调用publishProgress方法自动去调用onProgressUpdate方法,传递下载进度,并适时显示下载进度条。
当一个下载任务成功下载完成的时候回来调用方法,result参数就是doInBackground方法的返回值,更新下载进度,当publishProgress方法被调用的时候就会自动来调用这个方法。
- 2023-05-22 01:20:04下载
- 积分:1
-
Android五子棋
使用Android studio工具编写Android本地的五子棋游戏,该项目主要是使用自定义的视图组件,实现黑白两期的对决,无论是横竖5子还是斜线5五子连城一线,都算该局游戏胜利。对五子棋的界面和功能进行完整的书写。给项目可以提供给Android学者进行对Android studio的了解,和对Android自定义组件的熟悉。
- 2023-01-26 09:45:09下载
- 积分:1
-
迷你网球
迷你网球游戏。由 Nguyen Thanh 平阳使用 Java 语言。这是非常简单和基本的。但这对学习游戏编程非常重要。
- 2023-04-01 16:20:04下载
- 积分:1