资源简介
一个简单的安卓文件管理器源码。
代码片段和文件信息
using System.Collections.Generic;
using Android.App;
using Android.Views;
using Android.Widget;
namespace FileManager
{
class AnimalListAdapter : baseAdapter
{
Activity context;
public List Animals;
public AnimalListAdapter(Activity context List animals) : base()
{
this.Animals = animals;
this.context = context;
}
public override Animal this[int position]
{
get { return this.Animals[position]; }
}
public override int Count
{
get { return this.Animals.Count; }
}
public override View GetView(int position View convertView ViewGroup parent)
{
var item = this.Animals[position];
var view = convertView;
if (convertView == null || !(convertView is LinearLayout))
{
view = context.LayoutInflater.Inflate(Resource.Layout.Item parent false);
}
var imageItem = view.FindViewById(Resource.Id.Item_imagerview) as ImageView;
var texttop = view.FindViewById(Resource.Id.Item_textview) as TextView;
var textbottom = view.FindViewById(Resource.Id.Item_textview2) as TextView;
imageItem.SetImageResource(item.Image);
texttop.SetText(item.Name TextView.BufferType.Normal);
textbottom.SetText(item.Description TextView.BufferType.Normal);
return view;
}
public override long GetItemId(int position)
{
return position;
}
}
class Animal
{
public string Name
{
get;
set;
}
public string Description
{
get;
set;
}
public int Image
{
get;
set;
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-06-21 16:29 FileManager\
目录 0 2017-06-21 16:29 FileManager\.vs\
目录 0 2017-06-21 16:29 FileManager\.vs\FileManager\
目录 0 2017-06-21 16:29 FileManager\.vs\FileManager\v14\
目录 0 2017-06-21 16:30 FileManager\FileManager\
文件 1166 2017-06-21 14:21 FileManager\FileManager.sln
文件 1957 2017-06-21 14:36 FileManager\FileManager\AnimalListAdapter.cs
目录 0 2017-06-21 16:20 FileManager\FileManager\Assets\
文件 620 2017-06-21 14:21 FileManager\FileManager\Assets\AboutAssets.txt
文件 5901 2017-06-21 14:41 FileManager\FileManager\FileManager.csproj
文件 357 2017-06-21 14:21 FileManager\FileManager\FileManager.csproj.user
文件 160 2017-06-21 14:21 FileManager\FileManager\GettingStarted.Xamarin
文件 7833 2017-06-21 16:18 FileManager\FileManager\MainActivity.cs
文件 290 2017-06-21 14:29 FileManager\FileManager\packages.config
目录 0 2017-06-21 16:20 FileManager\FileManager\Properties\
文件 521 2017-06-21 14:41 FileManager\FileManager\Properties\AndroidManifest.xm
文件 1092 2017-06-21 14:21 FileManager\FileManager\Properties\AssemblyInfo.cs
目录 0 2017-06-21 16:20 FileManager\FileManager\Resources\
文件 1736 2017-06-21 14:21 FileManager\FileManager\Resources\AboutResources.txt
目录 0 2017-06-21 16:20 FileManager\FileManager\Resources\drawable\
文件 188 2017-06-21 14:21 FileManager\FileManager\Resources\drawable\add_white.png
文件 4571 2017-06-21 14:21 FileManager\FileManager\Resources\drawable\apk.png
文件 4844 2017-06-21 14:21 FileManager\FileManager\Resources\drawable\archive_yellow.png
文件 3218 2017-06-21 14:21 FileManager\FileManager\Resources\drawable\databa
文件 2796 2017-06-21 14:21 FileManager\FileManager\Resources\drawable\folder_blue.png
文件 159 2017-06-21 14:21 FileManager\FileManager\Resources\drawable\home_white.png
文件 4147 2017-06-21 14:21 FileManager\FileManager\Resources\drawable\Icon.png
文件 9571 2017-06-21 14:21 FileManager\FileManager\Resources\drawable\image.png
文件 6569 2017-06-21 14:21 FileManager\FileManager\Resources\drawable\text.png
文件 4835 2017-06-21 14:21 FileManager\FileManager\Resources\drawable\unknown.png
目录 0 2017-06-21 16:20 FileManager\FileManager\Resources\layout\
............此处省略18个文件信息
- 上一篇:sqljdbc.zip
- 下一篇:课程设计——员工管理系统
相关资源
- C#调用adb传输和与android手机通讯
- C#聊天程序基于HP-SOCKET V1.1最终版
- C#电影院售票订票系统java影院售票系
- xamarin App自动升级
- PDFBox-2.0.19 for .Net | c#用PDFBox解析PDF
- 中控指纹仪C#,jsp,js,ZKOnline SDK 5.
- Professional Android Programming With Mono for
- 在C#中调用 java的函数(C#与java结合使
- Xamarin.Android 扫描二维码并跳转网页
- D8 读卡器 D8 SDK 开发文档.zip
- AndroidStudio 调用 C#编写的Webservice
- 中控指纹仪Live20R开发包SDK文档和C#等
- C#开发安卓(Mono For android)上百个源
- Java类封装成DLL的工具
- ice rpc网络编程(php/java/c#/ruby/等多种
- C#调用JAVA方法
- JAVA+C#+VB+中控考勤机 SDK DEMO 文档 64位
- GPS定位: Android 手机端,C#电脑端;G
- c# 转java工具
- Xamarin官方教程
- BACnetServerAPIWinows SDK开发包支持C++C#J
- C#开发Android应用实战(扫描版高清)
- Xamarin.Android 入门(官网)中文文档
- 高拍仪SDKC#JAVAHTMLWINFORM等多语言
- C#开发Android应用实战 使用Mono for And
- Netty实现Java服务端和C#客户端联通
- Visual C#从入门到精通.第8版
- AI-TANK 仿真机器人程序_学习资料及样
- C#源代码转Java源代码破解版
- 骑士游历问题C#解决
评论
共有 条评论