- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在使用 SimpleCursorAdapter
和 ListView
来显示加载器加载的一些数据。在 cursor
中,我有一个 int
从 0 到 3 的项目。
我希望此 int 等于 0-1 的项目具有布局(右对齐,一种颜色),而 2-3 的项目具有另一种布局(左对齐,另一种颜色)。很像聊天应用,发送的消息在右边,接收的消息在左边。
有什么简单的方法吗?就像一个开关,其中 0-1 我膨胀 layout_1 和 2-3 我膨胀 layout_2。
编辑:我添加了我要填充的 ListFragment 的代码。用作开关的 int 是 MyContentProvider.Data.E_TYPE。我无法掌握它,但也许有人可以清楚地解释我要写的内容!
import com.actionbarsherlock.view.Menu;
import com.actionbarsherlock.view.MenuInflater;
import com.corsalini.survcontr.MyContentProvider.Data;
import android.content.ContentResolver;
import android.content.ContentValues;
import android.database.Cursor;
import android.os.Bundle;
import android.support.v4.app.ListFragment;
import android.support.v4.content.CursorLoader;
import android.support.v4.app.LoaderManager;
import android.support.v4.content.Loader;
import android.support.v4.widget.CursorAdapter;
import android.support.v4.widget.SimpleCursorAdapter;
import android.util.Log;
import android.view.View;
import android.widget.ListView;
public class FragEvents extends ListFragment implements LoaderManager.LoaderCallbacks<Cursor>{
@Override
public void onPause() {
allRead();
super.onPause();
}
private static final int EVENTS_LOADER = 0x02;
// This is the Adapter being used to display the list's data.
SimpleCursorAdapter mAdapter;
// If non-null, this is the current filter the user has provided.
String mCurFilter;
@Override public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
// Give some text to display if there is no data. In a real
// application this would come from a resource.
setEmptyText(this.getString(R.string.perform_event));
// We have a menu item to show in action bar.
setHasOptionsMenu(true);
// Create an empty adapter we will use to display the loaded data.
mAdapter = new SimpleCursorAdapter(getActivity(),
android.R.layout.simple_list_item_2, null,
new String[] { MyContentProvider.Data.E_TEXT, MyContentProvider.Data.E_DATE,
MyContentProvider.Data.E_NUMBER, MyContentProvider.Data.E_TYPE },
new int[] { android.R.id.text1, android.R.id.text2 },
CursorAdapter.FLAG_REGISTER_CONTENT_OBSERVER);
setListAdapter(mAdapter);
// Start out with a progress indicator.
setListShown(false);
// Prepare the loader. Either re-connect with an existing one,
// or start a new one.
getActivity().getSupportLoaderManager().initLoader(EVENTS_LOADER, null, this);
}
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
inflater.inflate(R.menu.menu_events, menu);
}
@Override public void onListItemClick(ListView l, View v, int position, long id) {
//TODO Insert desired behavior here.
Log.i("FragmentComplexList", "Item clicked: " + id);
}
// These are the Contacts rows that we will retrieve.
static final String[] SUMMARY_PROJECTION = new String[] {
MyContentProvider.Data.E_ID,
MyContentProvider.Data.E_DATE,
MyContentProvider.Data.E_NUMBER,
MyContentProvider.Data.E_TEXT,
MyContentProvider.Data.E_TYPE,
};
public Loader<Cursor> onCreateLoader(int id, Bundle args) {
return new CursorLoader(getActivity(), MyContentProvider.Data.CONTENT_URI_EVENTS,
SUMMARY_PROJECTION, null, null,
Data.E_ID + " DESC");
}
public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
// Swap the new cursor in. (The framework will take care of closing the
// old cursor once we return.)
mAdapter.swapCursor(data);
// The list should now be shown.
if (isResumed()) {
setListShown(true);
} else {
setListShownNoAnimation(true);
}
}
public void onLoaderReset(Loader<Cursor> loader) {
// This is called when the last Cursor provided to onLoadFinished()
// above is about to be closed. We need to make sure we are no
// longer using it.
mAdapter.swapCursor(null);
}
public void deleteEvent(ContentResolver contentResolver,
long id){
String selection = Data.E_ID + "=";
String[] args = {String.valueOf(id)};
contentResolver.delete(Data.CONTENT_URI_EVENTS, selection, args);
}
public void allRead(){
ContentResolver contentResolver = getActivity().getContentResolver();
ContentValues contentValue = new ContentValues();
contentValue.put(Data.E_NUMBER, Data.RECEIVED_READ);
String selection= Data.E_TYPE+"=";
String[] args= {String.valueOf(Data.RECEIVED_UNREAD)};
contentResolver.update(Data.CONTENT_URI_EVENTS, contentValue, selection, args);
}
}
编辑:如果我做对了,我最终的 EventsAdapter(扩展了 SimpleCursorAdapter)应该如下所示:
import android.content.Context;
import android.database.Cursor;
import android.support.v4.widget.SimpleCursorAdapter;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
public class EventsAdapter extends SimpleCursorAdapter {
private Context localContext;
public EventsAdapter(Context context, int layout, Cursor c, String[] from,
int[] to, int flags) {
super(context, layout, c, from, to, flags);
localContext = context;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
Cursor c= getCursor();
c.moveToPosition(position);
if(convertView == null)
{
LayoutInflater layoutInflator = (LayoutInflater)localContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
switch (getItemViewType(position)){
case 0:
convertView = layoutInflator.inflate(R.layout.item_event_0, null);
break;
case 1:
convertView = layoutInflator.inflate(R.layout.item_event_1, null);
break;
case 2:
convertView = layoutInflator.inflate(R.layout.item_event_2, null);
break;
case 3:
convertView = layoutInflator.inflate(R.layout.item_event_3, null);
break;
}
}
switch (getItemViewType(position)){
case 0:
TextView date0=(TextView)convertView.findViewById(R.id.date0);
TextView text0=(TextView)convertView.findViewById(R.id.text0);
date0.setText(""+c.getString(c.getColumnIndex(Data.E_DATE)));
text0.setText(""+c.getString(c.getColumnIndex(Data.E_TEXT)));
break;
case 1:
TextView date1=(TextView)convertView.findViewById(R.id.date1);
TextView text1=(TextView)convertView.findViewById(R.id.text1);
date1.setText(""+c.getString(c.getColumnIndex(Data.E_DATE)));
text1.setText(""+c.getString(c.getColumnIndex(Data.E_TEXT)));
case 2:
TextView date2=(TextView)convertView.findViewById(R.id.date2);
TextView text2=(TextView)convertView.findViewById(R.id.text2);
date2.setText(""+c.getString(c.getColumnIndex(Data.E_DATE)));
text2.setText(""+c.getString(c.getColumnIndex(Data.E_TEXT)));
case 3:
TextView date3=(TextView)convertView.findViewById(R.id.date3);
TextView text3=(TextView)convertView.findViewById(R.id.text3);
date3.setText(""+c.getString(c.getColumnIndex(Data.E_DATE)));
text3.setText(""+c.getString(c.getColumnIndex(Data.E_TEXT)));
}
return convertView;
}
@Override
public int getItemViewType(int position) {
int type = 0;
int returnInt = 0;
Cursor c= getCursor();
c.moveToPosition(position);
type= c.getInt(c.getColumnIndex(Data.E_TYPE));
switch (type){
case Data.RECEIVED_READ:
returnInt=3;
case Data.RECEIVED_UNREAD:
returnInt= 2;
case Data.SENT_COMPLETED:
returnInt= 1;
case Data.SENT_PROGRESS:
returnInt= 0;
default:
returnInt=0;
}
return returnInt;
}
@Override
public int getViewTypeCount() {
return 4;
}
}
最佳答案
在使用 ListView 时,尤其是像您描述的那样复杂的 ListView,正确处理 View 回收非常重要。 BaseAdapter
类是 SimpleCursorAdapter
的父类(super class),您可以重写一些方法,以使用最少的资源实现所需的效果。我以前从未使用过 SimpleCursorAdatper,因此在编写本文时考虑了普通的 CursorAdapter,但您可以将其与任何覆盖 BaseAdapter 的适配器类一起使用。
Android 中的 ListView 以一种非常特殊的方式运行以降低内存成本。当您滚动浏览 ListView 时,移出屏幕的项目的 View 将放置在一个小的 View 池中。 convertView
参数取自该池。他们这样做是因为将每个列表项 View 保存在内存中并不能很好地扩展,并且会很快导致 OutOfMemory 异常。 getView()
方法是获取这些 View 并为当前列表项配置它们的地方。通常你会有这样一行:
if(convertView == null)
convertView = layoutInflator.inflate(R.layout.list_item, null);
在这种情况下,如果 convertView 不为 null,我们就知道它之前被膨胀了。我们不想重新膨胀它,因为这是一个代价高昂的操作,getView 应该只是在显示之前用数据快速填充 View 。
现在,在您的情况下,convertView 有两种潜在的膨胀。不是每次都重新膨胀 View (非常糟糕)或使用某种 hack 为每个 View 提供唯一的资源 ID(更好,但不理想),我们可以重写基类中的两个方法以确保 convertView 始终是正确的类型。这两个方法是 getItemViewCount()
和 getItemViewType(int position)
。
getItemViewCount()
来确定它应该为列表维护多少个 View 池。覆盖它很简单,在您的情况下看起来像这样。
@Override
public int getViewTypeCount()
{
return 2; //Even though you have four cases, there are only 2 view types.
}
getItemViewType(int position)
由 Adapter 在调用 getView 之前使用,以决定 convertView 应该来自哪个池。在这里,您需要一个 switch 或 if/else 语句来检查底层数据源的 View 类型并返回它。 (请注意,根据 Android 文档,此处的返回值必须介于 0 和 getViewTypeCount() -1 之间,因此在您的情况下为 0 或 1。)
@Override
public int getItemViewType(int position)
{
Item item = getItem(position) //Or however you're getting the data associated with a particular list position
switch(item.myInt)
{
//I simplified this a bit, basically, check your int, if it's the first type, return 0 for your first layout type, else return 1 for your second.
case(0):
case(1):
return 0;
case(2):
case(3):
return 1;
}
}
现在,最后,我们将修改 getView 以执行初始 layoutInflation,以便您在池中拥有正确的 View 。
@Override
public View getView(int position, View convertView, ViewGroup viewParent)
{
//if convertView is not null, we got a view from the pool, just go on
if(convertView == null)
{
//This means we didn't have a view in the pool to match this view type. Inflate it and it will be placed in the proper pool when this list item is scrolled off the screen
if(getItemViewType(position) == 0)
convertView = layoutInflator.inflate(R.layout.list_item_type1, null);
else if(getItemViewType(position) == 1)
convertView = layoutInflator.inflate(R.layout.list_item_type2, null);
}
//Populate the view with whatever data you need here
//And finally....
return convertView;
}
ListView 及其适配器是我在 Android 中遇到的最复杂的事情之一,但花时间正确地完成它会大大提高应用程序的性能和用户体验。祝你好运!
关于android - 基于 ListItem 特定变量在 ListItem 上膨胀布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12180724/
我最近在/ drawable中添加了一些.gifs,以便可以将它们与按钮一起使用。这个工作正常(没有错误)。现在,当我重建/运行我的应用程序时,出现以下错误: Error: Gradle: Execu
Android 中有返回内部存储数据路径的方法吗? 我有 2 部 Android 智能手机(Samsung s2 和 s7 edge),我在其中安装了一个应用程序。我想使用位于这条路径中的 sqlit
这个问题在这里已经有了答案: What's the difference between "?android:" and "@android:" in an android layout xml f
我只想知道 android 开发手机、android 普通手机和 android root 手机之间的实际区别。 我们不能从实体店或除 android marketplace 以外的其他地方购买开发手
自Gradle更新以来,我正在努力使这个项目达到标准。这是一个团队项目,它使用的是android-apt插件。我已经进行了必要的语法更改(编译->实现和apt->注释处理器),但是编译器仍在告诉我存在
我是android和kotlin的新手,所以请原谅要解决的一个非常简单的问题! 我已经使用导航体系结构组件创建了一个基本应用程序,使用了底部的导航栏和三个导航选项。每个导航选项都指向一个专用片段,该片
我目前正在使用 Facebook official SDK for Android . 我现在正在使用高级示例应用程序,但我不知道如何让它获取应用程序墙/流/状态而不是登录的用户。 这可能吗?在那种情
我在下载文件时遇到问题, 我可以在模拟器中下载文件,但无法在手机上使用。我已经定义了上网和写入 SD 卡的权限。 我在服务器上有一个 doc 文件,如果用户单击下载。它下载文件。这在模拟器中工作正常但
这个问题在这里已经有了答案: What is the difference between gravity and layout_gravity in Android? (22 个答案) 关闭 9
任何人都可以告诉我什么是 android 缓存和应用程序缓存,因为当我们谈论缓存清理应用程序时,它的作用是,缓存清理概念是清理应用程序缓存还是像内存管理一样主存储、RAM、缓存是不同的并且据我所知,缓
假设应用程序 Foo 和 Eggs 在同一台 Android 设备上。任一应用程序都可以获取设备上所有应用程序的列表。一个应用程序是否有可能知道另一个应用程序是否已经运行以及运行了多长时间? 最佳答案
我有点困惑,我只看到了从 android 到 pc 或者从 android 到 pc 的例子。我需要制作一个从两部手机 (android) 连接的 android 应用程序进行视频聊天。我在想,我知道
用于使用 Android 以编程方式锁定屏幕。我从 Stackoverflow 之前关于此的问题中得到了一些好主意,并且我做得很好,但是当我运行该代码时,没有异常和错误。而且,屏幕没有锁定。请在这段代
文档说: android:layout_alignParentStart If true, makes the start edge of this view match the start edge
我不知道这两个属性和高度之间的区别。 以一个TextView为例,如果我将它的layout_width设置为wrap_content,并将它的width设置为50 dip,会发生什么情况? 最佳答案
这两个属性有什么关系?如果我有 android:noHistory="true",那么有 android:finishOnTaskLaunch="true" 有什么意义吗? 最佳答案 假设您的应用中有
我是新手,正在尝试理解以下 XML 代码: 查看 developer.android.com 上的文档,它说“starStyle”是 R.attr 中的常量, public static final
在下面的代码中,为什么当我设置时单选按钮的外观会发生变化 android:layout_width="fill_parent" 和 android:width="fill_parent" 我说的是
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 9
假设我有一个函数 fun myFunction(name:String, email:String){},当我调用这个函数时 myFunction('Ali', 'ali@test.com ') 如何
我是一名优秀的程序员,十分优秀!