- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个通过网络服务调用填充的数据库。我想知道如何仅从 ListView 中隐藏其中一行?我不想删除记录只是隐藏它所以它不会在 ListView 中显示该行,因为我正在使用该行填充上面的另一个 ListView。有没有办法在像 employeeNumber 这样的列中隐藏我的特定值?
我正在用游标填充 ListView,并希望有一种方法可以仅隐藏第 1 行,因为我不希望它显示在我的 ListView 中。
public void displayBottomList() {
SQLiteDatabase db = dbHandler.getWritableDatabase();
Cursor mBottomListCursor = db.rawQuery("SELECT * FROM employees", null);
ListView mBottomListView = (ListView) findViewById(R.id.mDirectReportList);
BottomListViewAdapter bottomAdapter = new BottomListViewAdapter(this, mBottomListCursor);
mBottomListView.setAdapter(bottomAdapter);
}
不太确定如何使用数据库中的 Employee_number 列在此方法中隐藏这一行。
public class BottomListViewAdapter extends CursorAdapter {
int position;
public BottomListViewAdapter(Context context, Cursor cursor) {
super(context, cursor, 0);
}
@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
View view = LayoutInflater.from(context).inflate(R.layout.contact_cardview_layout, parent, false);
ViewHolder viewHolder = new ViewHolder(view);
view.setTag(viewHolder);
return view;
}
@Override
public void bindView(View view, Context context, final Cursor cursor) {
final int pos = cursor.getPosition();
final ViewHolder viewHolder = (ViewHolder) view.getTag();
String mFirstName = cursor.getString(cursor.getColumnIndexOrThrow("First_name"));
String mLastName = cursor.getString(cursor.getColumnIndexOrThrow("Last_name"));
String mTitle = cursor.getString(cursor.getColumnIndexOrThrow("Payroll_title"));
String mThumbnail = cursor.getString(cursor.getColumnIndexOrThrow("ThumbnailData"));
viewHolder.tvFirstName.setText(mFirstName);
viewHolder.tvLastName.setText(mLastName);
viewHolder.tvTitle.setText(mTitle);
if(mThumbnail != null) {
byte[] imageAsBytes = Base64.decode(mThumbnail.getBytes(), Base64.DEFAULT);
Bitmap parsedImage = BitmapFactory.decodeByteArray(imageAsBytes, 0, imageAsBytes.length);
viewHolder.mPeepPic.setImageBitmap(parsedImage);
} else {
viewHolder.mPeepPic.setImageResource(R.drawable.img_place_holder_adapter);
}
viewHolder.mDetailsButton.setTag(cursor.getPosition());
viewHolder.mDetailsButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
view.getTag();
String mEmployeeNumber = cursor.getString(1);
String mEmail = cursor.getString(8);
String mFirstName = cursor.getString(2);
String mLastName = cursor.getString(3);
String mPhoneMobile = cursor.getString(4);
String mPhoneOffice = cursor.getString(5);
String mCostCenter = cursor.getString(10);
String mHasDirectReports = cursor.getString(7);
String mTitle = cursor.getString(6);
String mPic = cursor.getString(9);
Intent mIntent = new Intent(view.getContext(), EmployeeFullInfo.class);
mIntent.putExtra("Employee_number", mEmployeeNumber);
mIntent.putExtra("Email", mEmail);
mIntent.putExtra("First_name", mFirstName);
mIntent.putExtra("Last_name", mLastName);
mIntent.putExtra("Phone_mobile", mPhoneMobile);
mIntent.putExtra("Phone_office", mPhoneOffice);
mIntent.putExtra("Cost_center_id", mCostCenter);
mIntent.putExtra("Has_direct_reports", mHasDirectReports);
mIntent.putExtra("Payroll_title", mTitle);
mIntent.putExtra("ThumbnailData", mPic);
mIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
view.getContext().startActivity(mIntent);
}
});
}/*
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if(convertView == null) {
LayoutInflater inflater = LayoutInflater.from()
}
}*/
public static class ViewHolder {
TextView tvFirstName;
TextView tvLastName;
TextView tvTitle;
ImageView mPeepPic;
ImageButton mDetailsButton;
CardView mCardView;
public ViewHolder(View view) {
tvFirstName = (TextView) view.findViewById(R.id.personFirstName);
tvLastName = (TextView) view.findViewById(R.id.personLastName);
tvTitle = (TextView) view.findViewById(R.id.personTitle);
mPeepPic = (ImageView) view.findViewById(R.id.person_photo);
mDetailsButton = (ImageButton) view.findViewById(R.id.fullDetailButton);
}
}
/*@NonNull
@Override
public View getView(final int position, View convertView, @NonNull final ViewGroup parent) {
final Employee employee = getItem(position);
final AppViewHolder holder;
convertView = LayoutInflater.from(getContext()).inflate(R.layout.contact_cardview_layout, parent, false);
holder = new AppViewHolder();
holder.tvFirstName = (TextView) convertView.findViewById(R.id.personFirstName);
holder.tvLastName = (TextView) convertView.findViewById(R.id.personLastName);
holder.tvTitle = (TextView) convertView.findViewById(R.id.personTitle);
holder.mPeepPic = (ImageView) convertView.findViewById(R.id.person_photo);
holder.mDetailsButton = (ImageButton) convertView.findViewById(R.id.fullDetailButton);
holder.mCardView = (CardView) convertView.findViewById(R.id.home_screen_cardView);
if (employee != null) {
holder.tvFirstName.setText(employee.getFirst_name());
holder.tvLastName.setText(employee.getLast_name());
holder.tvTitle.setText(employee.getPayroll_title());
if (employee.getThumbnailData() != null) {
String peepPicData = employee.getThumbnailData();
byte[] imageAsBytes = Base64.decode(peepPicData.getBytes(), Base64.DEFAULT);
Bitmap parsedImage = BitmapFactory.decodeByteArray(imageAsBytes, 0, imageAsBytes.length);
holder.mPeepPic.setImageBitmap(parsedImage);
}
holder.mDetailsButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String mEmployeeNumber = employee.getEmployee_number();
String mEmail = employee.getEmail();
String mFirstName = employee.getFirst_name();
String mLastName = employee.getLast_name();
String mPhoneMobile = employee.getPhone_mobile();
String mPhoneOffice = employee.getPhone_office();
String mCostCenter = employee.getCost_center_id();
String mHasDirectReports = employee.getHas_direct_reports();
String mTitle = employee.getPayroll_title();
String mPic = employee.getThumbnailData();
Intent mIntent = new Intent(view.getContext(), EmployeeFullInfo.class);
mIntent.putExtra("Employee_number", mEmployeeNumber);
mIntent.putExtra("Email", mEmail);
mIntent.putExtra("First_name", mFirstName);
mIntent.putExtra("Last_name", mLastName);
mIntent.putExtra("Phone_mobile", mPhoneMobile);
mIntent.putExtra("Phone_office", mPhoneOffice);
mIntent.putExtra("Cost_center_id", mCostCenter);
mIntent.putExtra("Has_direct_reports", mHasDirectReports);
mIntent.putExtra("Payroll_title", mTitle);
mIntent.putExtra("ThumbnailData", mPic);
mIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
view.getContext().startActivity(mIntent);
}
});
holder.mCardView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String mEmployeeNumber = employee.getEmployee_number();
Intent mListBottomListIntent = new Intent(view.getContext(), MainActivity.class);
mListBottomListIntent.putExtra("Employee_number", mEmployeeNumber);
mListBottomListIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
view.getContext().startActivity(mListBottomListIntent);
}
});
convertView.setTag(holder);
}
return convertView;
}*/
}
public class CustomCursorWrapper extends CursorWrapper {
private String mStartingEmployeeID = "3500075";
private Employee employee;
public CustomCursorWrapper(Cursor cursor) {
super(cursor);
}
@Override
public int getCount() {
//if you want to exclude just one row
return super.getCount() - 1;
}
@Override
public boolean moveToPosition(int position) {
boolean b = super.moveToPosition(position);
if(employee.getEmployee_number() != null && employee.getEmployee_number().contains(mStartingEmployeeID)) {
//if this is the row you wanna skip
return super.moveToPosition(position + 1);
}
return b;
}
}
最佳答案
通常这是 Tricky,因为您的光标将有该条目。如果条目位于光标内的固定位置,最好是在光标的头部或尾部,这会更容易一些。此外,游标适配器在调用“bindView”时会自动滚动到下一个条目,我不建议直接摆弄游标。如果您仍然想那样做,请记住您不仅必须覆盖 bindview
,还必须覆盖适配器上的 getCount
方法。
编辑:或者,如果您要隐藏的项目可以出现在 Cursor 内的动态位置,则使用 Cursor 包装器。基本上 CursorWrapper 环绕 Cursor 并将所有方法调用委托(delegate)给底层游标。但是您可以自由地覆盖某些方法并插入您的业务逻辑。样本是 -
public class CustomCursorWrapper extends CursorWrapper {
public CustomCursorWrapper(Cursor cursor) {
super(cursor);
}
@Override
public int getCount() {
//if you want to exclude just one row
return super.getCount() - 1;
}
@Override
public boolean moveToPosition(int position) {
boolean b = super.moveToPosition(position);
if(false /*check whatever you have to check*/) {
//if this is the row you wanna skip
return super.moveToPosition(position + 1);
}
return b;
}
}
API 文档 - https://developer.android.com/reference/android/database/CursorWrapper.html
请注意上面的示例只是为了展示用法。您可能最终会覆盖更多的方法。试一试
编辑 2 -
Cursor mBottomListCursor = db.rawQuery("SELECT * FROM employees", null);
CursorWrapper myWrapper = new CursorWrapper(mBottomListCursor );
ListView mBottomListView = (ListView) findViewById(R.id.mDirectReportList);
BottomListViewAdapter bottomAdapter = new BottomListViewAdapter(this, myWrapper );
mBottomListView.setAdapter(bottomAdapter);
关于android - 从适配器隐藏数据库行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41946739/
我有 3 个 AutoCompleteTextView,我想在它们上面注册 2 个 String[] 适配器。目前,我正在这样做: atw_from.setAdapter(new ArrayAdapt
我需要实现一个 recyclerView 来显示我对 Parse 的查询,所以我已经做到了: private class Pagination extends RecyclerView.OnScro
我对 BizTalk 相当陌生,目前我只是探索它的功能并了解不同部分(架构、编排、端口等)如何协同工作。我对其适配器有疑问: 不同的适配器是否已经随 BizTalk 服务器安装一起预装并准备好配置,或
我在 BizTalk 中测试 MQSC 适配器以与 Z/OS 主机上的队列通信时遇到问题。 测试场景:通过 Biztalk 发送消息时,我(强制)停止并启动主机 channel ,以模拟主机 IPL。
已结束。此问题正在寻求书籍、工具、软件库等的推荐。它不满足Stack Overflow guidelines 。目前不接受答案。 我们不允许提出寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以便
我想用我的音频单元在iPhone上录制一条音频信号,该信号来自一条普通的3.5毫米音频电缆(例如,另一部iPhone作为声源)。 由于iPhone具有4端口耳机插孔,因此无法直接插入。 我尝试了不同种
[请参阅下面的更新] 我很难定义模式。我的同事说这是适配器模式。我不知道。我们陷入困境主要是因为我们想要正确命名我们的组件。 问题:是适配器模式吗?如果不是的话是什么?如果是其他事情,这是实现这个想法
我有点不熟悉Java KeyAdapter有效,并且使用 KeyAdapter 使用以下代码得到了意想不到的结果。当按下一个键而另一个键已按下时,就会出现此问题,无论 isKeyPressed() 是
我想知道如何通过 ORM 适配器使用 Node.js 在 MySQL 中创建多个表。我通过模型创建了一个表,即“us.js” module.exports = { identity: 'us'
我有一个 JavaFx 客户端。我正在使用一个具有 ObservableSet 作为字段的 bean 作为模型。我想将这些数据显示到 ListView 中,但我无法将我的字段类型更改为 Observa
我正在尝试在 native iOS 应用程序中实现基于表单的身份验证,但我需要在没有收到质询的情况下登录,我想打开一个表单并登录。我实现了一个包含 isCustomResponse 函数的 Chall
我正在尝试为我的迭代器和 const_iterator 类实现反向迭代器适配器,但遇到了一些麻烦。如果有人可以指导我解决这个问题,将不胜感激! 我的想法是我应该能够从我的 rbegin() 和 ren
使用 spring-integration-sftp,创建任意数量的入站 channel 适配器对象的推荐方法是什么?我的应用程序需要监视多个远程目录(1 到 n),直到运行时才知道。 最佳答案 当前
我正在尝试为我们自己的框架创建适配器。我们的框架使用自己的断言机制,因此我需要编写适配器。 适配器类非常简单,如下所示: public class AllureReportListener {
有没有什么方法可以使用命令行而不是使用 Worklight 控制台来部署 Worklight 适配器? (因为我的 worklight 服务器安装在 WAS 上,wsadmin 命令或类似的命令...
我想构建自己的自定义 log4j(网络)适配器来解决我的问题 that I posted here. 我查看了 log4j 的文档,但看不到开发人员在哪里/是否讨论如何执行此操作。 有人能给我指出正确
我使用消息驱动 channel 适配器从 weblogic JMS 队列接收作为字符串的 xml 消息,然后将此消息传递到 spring 集成 channel 以存储到数据库中,转换为不同的 xml,
有没有什么方法可以使用命令行而不是使用 Worklight 控制台来部署 Worklight 适配器? (因为我的 worklight 服务器安装在 WAS 上,wsadmin 命令或类似的命令...
我试图为 Android 制作一个聊天应用程序,所以我使用了 RecyclerView 。我的适配器有问题,我的聊天室收到的 JSON 响应显示为空白。我的代码是否遗漏了某些内容? 这是我的适配器类
如果这是重复的,我提前道歉。我对 Android 开发还是新手,并尝试寻找解决方案,但找不到有效的解决方案。 我正在创建一个待办事项应用程序并在我的适配器中收到此错误。 java.lang.NullP
我是一名优秀的程序员,十分优秀!