- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
当我们扩展 Baseadapter
时,这些方法是如何工作的。
public int getCount()
public Object getItem(int position)
public long getItemId(int position)
public View getView(int position, View convertView, ViewGroup parent)
因为如果我们有 some_return_type_from_getCount()
,那么 getView()
将从中得到什么以及当我们返回 getView()_return_type
谁还有 get_the_return_value_of getView()
。
我对这些方法一头雾水。
最佳答案
下面的帖子是根据我的理解写的。所以如果你想改进它而不是批评某些特定点,请随意。
private ArrayList<HashMap<String, String>> mProjectsList = new ArrayList<HashMap<String, String>>();
(你可以使用任何实际包含数据的游标或数组,并且你想使用适配器绑定(bind)它)
public int getCount() -> 为您提供适配器中存在的总元素(如数组的大小)
@Override
public int getCount() {
// TODO Auto-generated method stub
return mProjectsList.size();
}
public Object getItem(int position) -> 告诉点击了哪个项目,只需按照我指定位置的方式返回这里即可。它实际上会返回您单击的整个 biwe 及其所有属性,这就是为什么我们只在此处返回我们单击的位置的 View ,以便告诉 BASEADAPTER 类该 View 已被点击
@Override
public Object getItem(int position) {
// TODO Auto-generated method stub
return mProjectsList.get(position);
}
public long getItemId(int position) 将提供您在点击某些列表项时要返回的主要 ID。当您实际单击 ListView 的某些项目时,它会返回长格式的主键和 int 格式的位置这两个东西..
实际上从这个 getItemId() 方法返回主键。
我们通常在数据库中将主键指定为“_id”,因此当我们使用简单的适配器而不是扩展 baseadapter 类时,它会自动返回 _id 字段作为长格式的主 ID。但是我们必须在BaseAdapter这里手动指定我们要返回的内容
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return Long.parseLong(mProjectsList.get(position).get("ID")) ;
// retuning my Primary id from the arraylist by
}
public View getView(int position, View convertView, ViewGroup parent) 实际创建您绑定(bind)自定义布局的 View
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// TODO Auto-generated method stub
//**position** index of the item whose view we want.
//**convertView** the old view to reuse, if possible. Note: You should
//check that this view is non-null and of an appropriate type before using. If it is
//not possible to convert this view to display the correct data, this method can create a
//new view.
// (Lets see if you have total 100 elements in listview , but
//currently only 10 are visible in screen. So it will create only 10 items at a time as
//only those are visible.
//and when you will scroll that listView it will use these same 10
//Views(elemnts in rows to display new data, instead of creating 10 more new views, which
//obviously will be efficeient)
//While alternatively if we dont extend base adapter (but rather
//use simple binding using simpleadapter) it will then generates whole list of 100 Views
//in one short whic will be time consuimng/ memory consuming depending uopn the amount of
//data to be bind
//**parent** the parent that this view will eventually be attached to
View rowView = convertView;
if (rowView == null) { //always required to be checked as mentioned in google docs
// this line checks for if initially row View is null then we have to create the Row View. Once it will be created then it will always Surpass this check and we will keep on reusing this rowView (thats what actually we are looking for)
LayoutInflater inflater = mActivitycontext.getLayoutInflater(); // creating instance of layout inflater to inflate our custom layout
rowView = inflater.inflate(R.layout.projectslist_row, null); //assigend our custom row layout to convertview whic is to be reused
ViewHolder viewHolder = new ViewHolder(); // ViewHolder is a custom class in which we are storing are UI elaments of Row
viewHolder.mprojectslistRowView = (TextView) rowView.findViewById(R.id.projectslist_row); //assigned the id of actual textView thats on our custom layout to the instance of TextView in our static class
rowView.setTag(viewHolder);
}
ViewHolder holder = (ViewHolder) rowView.getTag();
String projectName = mProjectsList.get(position).get("ProjectName"); // here i am fetching data from my HashMap ArrayList
holder.mprojectslistRowView.setText(projectName); // here i am just assigning what to show in my text view
return rowView;
}
I created this as inner class
static class ViewHolder
{
// create instances for all UI elemnts of your Row layout (here i am showing only text data as row of my list view so only instance of TextView has been created)
// It is a statci class hence will keep this instance alive all the time and thats Why we will be able to reuse it again and again.
TextView mprojectslistRowView;
}
您只需将此适配器绑定(bind)到您的控件,因为我们正在覆盖此处的方法一切都会自动处理。
关于android - 当我们扩展它时,BaseAdapter 是如何工作的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15545770/
好的,我一直在仔细搜索,但我在实现 BaseAdapter 时遇到了一些问题。 我已经能够实现一个简单的游标适配器 http://developer.android.com/resources/sam
我将使用下面的代码从服务器(URL)加载适配器的图像。它适用于新型移动设备。但是,旧模型会崩溃并返回“java.lang.OutOfMemoryError”。它将把 A 行或 B 行标记为错误。如何避
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我想在 ListView 中显示具有多列的数组。 调用 View.getView() 时出现此错误: android.widget.linerlayout cannot be cast to andr
嗨,我已经扩展了 BaseAdapter,我的列表大小是 20,但它只显示了 7 条记录,在第 7 条记录之后它又从 0 开始显示。 公共(public)类 ContactsAdapter 扩展 Ba
大家 最近在用ADT开发android 2.2的程序。程序在模拟器上运行正常,但在真机上运行却遇到了一个奇怪的问题。 我使用 BaseAdapter 创建一个 MenuAdapter,它将加载名为 V
这是我的自定义 BaseAdapter 的构造函数 public MyAdapterAds(Activity activity, BaseAdapter delegate) { this.ac
我有一个像这样的 JSON 数组:[{"usename":"user", "user_pic":"picture", "photo":"http://hfhfhfhhfh.jpg", "timesta
嗨,我是这个机器人的新手。我只是对基本适配器感到困惑。我的问题是考虑在一个数组中我有 10 个项目(从 0 到 9)。在 baseadapter 的 getview() 选项中,我在 textview
有没有办法通过 getApplicationContext() 获取 BaseAdapter 类中的 context? 我需要这个,因为我要从 url 加载图像。我在这里使用 context: 这是在
我有一个 ListView,它扩展了 BaseAdapter。我有一个数据 [] 数组。 ListView 正确膨胀和填充。我想要做的是在用户选择项目时以及是否选择了上一个项目时,使 ImageVie
无论如何,我正在努力制作的应用程序都有一个简单的列表和一个位于底部的按钮。我的问题是我的自定义 BaseAdapter 不显示元素。我知道,因为我的元素只是一个字符串,所以我可以使用 ArrayAda
我正在尝试将一个整数数组传递给一个 baseadapter,这样 A.class 就会将一个整数数组传递给 B.class 中的 BaseAdapter。以下是我在 A.Class(发件人)中传递整数
我在运行刚从 ADT(Eclipse) 转换而来的 android 项目时遇到此错误。 找到一个话题 here但没有回答。谁有解决办法? 最佳答案 这是解决方法。 类 XXXAdapter 扩展了 a
我正在使用 Android Studio 创建 Android 应用程序。我在使用自定义 SimpleAdapter 的 Activity 中有 ListView 。我需要在自定义适配器中使用自定义字
我使用了 ListView 。我有 5 件元素。当我启动程序时,我只看到 3. 处理程序,用于进度条开始处理 3/5 项目。我去看 4,5 项,所以我从 View 1,2 项中丢失了。 4 和 5 项
我有一个自定义BaseAdapter对于我的ListView我在其中实现 AdapterView.OnItemClickListener . 问题是onItemClick(AdapterView, V
在我的应用程序中,我遇到了与 here 相同的错误或here但是,建议的清理 Eclipse 项目的解决方案对我不起作用。具体来说,我有一个自定义 ListView 适配器,它尝试从其布局文件加载两个
我有一个 ListView 和一个将值附加到 View 的 Baseadapter 类。适配器类看到除一个之外的所有变量..我不知道该变量是否超出了类的范围..我已经检查过,但似乎找不到问题出在哪里
我刚刚构建了一个扩展 BaseAdapter 的新类。我相信我已经正确设置了所有内容,但是,当我尝试在 fragment 内设置适配器时,我想使用它,但出现以下错误: 构造函数 HomeBase(Ho
我是一名优秀的程序员,十分优秀!