-
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 GPS定位 记录生活轨迹实例源码下载
android GPS定位 记录生活轨迹实例源码下载
- 2014-09-07下载
- 积分:1
-
android 仿微信录音+播放 例子源码下载(语音对讲)
仿微信语音对讲,压缩包中包含3个语音相关的例子,具体如下:
- 2015-03-26下载
- 积分:1
-
Android毛玻璃效果处理类 附示例源码
Android毛玻璃效果处理类 附示例源码,方法封装,实现简单,代码里有详细注释,有需要的朋友可以去下载。相关代码先睹为快:
Bitmap bmp = BitmapFactory.decodeResource(getResources(),id);//从资源文件中得到图片,并生成Bitmap图片
final Bitmap blurBmp = BlurUtil.fastblur(MainActivity.this, bmp, 10);//0-25,表示模糊值
final Drawable newBitmapDrawable = new BitmapDrawable(blurBmp); // 将Bitmap转换为Drawable
layout.post(new Runnable() //调用UI线程
{
public void run()
{
layout.setBackgroundDrawable(newBitmapDrawable);//设置背景
}
});
- 2022-04-07 03:49:35下载
- 积分:1
-
富文本编辑器
1,源码分析本软件是安卓端收据富文本收据,向服务器发送;安卓端收集数据时数据可以是文字,图片,语音,文件,还可以录音,可以拍照.录音完毕保存的时候应该提交给服务器,因此服务器对应的ip需要自己设置下.数据提交使用的http协议,服务器端完整代码安卓端和服务器代码都比较简单,无非就是数据通信使用的是json格式实现富文本的形式原理就是在安卓端界面显示使用html显示,关键类android.text.html
- 2022-03-25 01:16:33下载
- 积分:1
-
仿火车出票效果
应用背景有做类似火车票出票效果的签到效果的应用可以借鉴关键技术就是两个activity的切换,并用了延时动画去展现火车票出票效果
- 2022-01-21 04:53:07下载
- 积分:1
-
违章查询的demo
使用第三方接口自行开发的违章查询app,该app只接受小汽车的违章查询,可能有省市没有在查询返回 也是正常的,如果有接口返回异常的情况请稍后尝试,第三方接口可能不稳定。
- 2022-11-15 08:25:03下载
- 积分:1
-
课程表安卓源代码
安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,安卓源代码,
- 2023-01-14 10:55:03下载
- 积分:1
-
android HerilyAlertDialog完全自定义的Dialog
android HerilyAlertDialog完全自定义的Dialog
- 2014-08-21下载
- 积分:1
-
android 百度地图定位SDK实例源码下载(geosdk实例)
百度地图定位sdk 实例源码
- 2014-05-24下载
- 积分:1