- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试制作一个相对简单的文件系统浏览器,它可以显示目录并让您选择它们。我有一个列表 fragment ,它使用自定义适配器将目录显示为列表。我为列表中的每个条目创建了一个 clickListener。我需要得到它,以便在单击列表条目时刷新整个 ListView 。由于此点击监听器是在我的适配器中定义的,因此它如何以某种方式向列表 fragment 发送信号,以便告诉它刷新适配器使用的数据。非常感谢帮助。
这是我的代码:
PickerFragment.java:
package com.grid.picker;
import android.content.Intent;
import android.os.Bundle;
//import android.support.v4.app.Fragment;
import android.os.Environment;
import android.support.v4.app.ListFragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import java.io.File;
import java.io.FilenameFilter;
import java.util.ArrayList;
import java.util.List;
import static android.content.Intent.getIntent;
public class PickerFragment extends ListFragment
{
private String currentFilesystemPath = ""; // This path does not include the root path
private int numberOfFolders = 0;
private List<Folder> folders = new ArrayList<Folder>();
public PickerFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState)
{
View rootView = inflater.inflate(R.layout.fragment_main, container, false);
return rootView;
}
private void tempPopulate()
{
folders.add(new Folder("TestFolder", "/test/path"));
}
private void populateFolders()
{
// Create a new File at the current path
File currentFolder = new File(Environment.getExternalStorageDirectory().getPath()+currentFilesystemPath);
Utility.debugOutput("populateFolders() currentFolder: " +currentFolder);
// Lets get the list of folders
String[] directories = currentFolder.list(new FilenameFilter() {
@Override
public boolean accept(File current, String name) {
return new File(current, name).isDirectory();
}
});
// Build up the list of folders with folder objects
for(int i=0; i<directories.length;i++)
{
//Utility.debugOutput("Folder:" +directories[i].toString());
folders.add(new Folder(directories[i].toString(), currentFolder.getPath()+directories[i].toString()));
}
}
public void onActivityCreated(Bundle savedInstanceState)
{
super.onActivityCreated(savedInstanceState);
// Temporary folder population
//tempPopulate();
populateFolders();
/*
// Set an adapter for this list fragment to use
setListAdapter(new ArrayAdapter<Folder>(getActivity(),
android.R.layout.simple_list_item_activated_1, folders));
*/
// We want to use our custom adapter. We pass in this activity, the layout to use, and an array of folders
// We give it a new Folder object just so it knows what type of objects are in the array...??
FolderAdapter adapter = new FolderAdapter(this.getActivity(), R.layout.listview_item_row, folders.toArray(new Folder[0]));
// Use our custom adapter for the list
setListAdapter(adapter);
}
}
文件夹适配器.java:
package com.grid.picker;
import android.app.Activity;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
public class FolderAdapter extends ArrayAdapter<Folder>
{
Folder[] folders = null;
Context context;
int layoutResourceId;
// Constructor
// Param 1: Reference of the activity
// Param 2: The resource id of the layout file we want to use for displaying each ListView item
public FolderAdapter(Context context, int layoutResourceId, Folder[] data)
{
super(context, layoutResourceId, data);
this.layoutResourceId = layoutResourceId;
this.context = context;
this.folders = data;
}
// This is a function that the click listener can call to start the list update process
public void updateList(String name)
{
Utility.debugOutput("updateList() rx: " +name);
this.notifyDataSetChanged();
}
// Presumably getView is called for every row in the list ?
// position is the index of the list item in the list
@Override
public View getView(int position, View convertView, ViewGroup parent)
{
// Create a new view to play with
View row = convertView;
final int rowID = position;
FolderHolder holder = null;
if(row == null)
{
LayoutInflater inflater = ((Activity)context).getLayoutInflater();
// Inflate (parse) the layout XML
row = inflater.inflate(layoutResourceId, parent, false);
//Instantiate a new static object for folder icons (static for speed (caching)
holder = new FolderHolder();
holder.imgIcon = (ImageView)row.findViewById(R.id.imgIcon);
holder.txtTitle = (TextView)row.findViewById(R.id.txtTitle);
row.setTag(holder);
// Set clickListener
row.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v)
{
Utility.debugOutput("Row ID clicked: " +rowID);
Utility.debugOutput("Folder array:" +folders[rowID].folderName);
updateList(folders[rowID].folderName);
//Toast.makeText(context,"you clicked item: "+rowID, Toast.LENGTH_LONG.show();
//code you want to execute on click of list item...
}
});
}
else
{
holder = (FolderHolder)row.getTag();
}
Folder folder = folders[position];
holder.txtTitle.setText(folder.folderName);
holder.txtTitle.setText(folder.folderName);
holder.imgIcon.setImageResource(folder.icon);
/*
// Add click listener to the view
View.OnClickListener clickListener = new View.OnClickListener() {
public void onClick(View v) {
Utility.debugOutput("Something clicked???!");
// This call requires API level 15 minimum...
v.callOnClick();
}
}; */
//row.setOnClickListener(clickListener);
return row;
}
// This class will be used as a cache for the folder images
static class FolderHolder
{
ImageView imgIcon;
TextView txtTitle;
}
}
文件夹.java:
package com.grid.picker;
public class Folder
{
// Each instance of this class will be an entry in the folder list
public String folderName;
public String fullPath;
public boolean hasChildren = false; // False by default
public static final int icon = R.drawable.folder;
// Constructor
public Folder(String newName, String newFullPath)
{
folderName = newName;
fullPath = newFullPath;
}
}
listview_item_row.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp">
<ImageView android:id="@+id/imgIcon"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:layout_marginRight="15dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp" />
<TextView android:id="@+id/txtTitle"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:textStyle="bold"
android:textSize="22dp"
android:textColor="#000000"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp" />
</LinearLayout>
最终我需要在列表中显示的每个文件夹上放置一个复选框,但现在我需要获取它以便可以单击列表中显示的文件夹来刷新显示并更新列表。非常感谢。
最佳答案
在你的点击监听器上使用它
// Set clickListener
row.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v)
{
Utility.debugOutput("Row ID clicked: " +rowID);
Utility.debugOutput("Folder array:" +folders[rowID].folderName);
notifyDataSetInvalidated();
}
});
关于java - 自定义 ListAdapter 中的点击监听器如何修改列表数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23091671/
前言: 有时候,一个数据库有多个帐号,包括数据库管理员,开发人员,运维支撑人员等,可能有很多帐号都有比较大的权限,例如DDL操作权限(创建,修改,删除存储过程,创建,修改,删除表等),账户多了,管理
这个问题已经有答案了: Condition variable deadlock (2 个回答) 已关闭 5 年前。 在研究多线程时,我编写了以下代码,但在屏幕上没有观察到输出。我在这里做错了什么?我期
复制代码 代码如下: <IfModule mod_rewrite.c> RewriteEngineOn RewriteBase/ #将www.zzvips.com跳转到www.zzv
复制代码 代码如下: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / # 把 www.zzvips.com
复制代码 代码如下: Const T_GATEWAY = "1.1.1.1" '网关 Const T_NEWDNS1 = "2.2.2.2" 'DNS1
0. 修改索引 大文本字段支持排序 PUT http://localhost:9200/lrc_blog/_mapping //请求体 { "properties": { "title": { "t
仅 react 当状态发生变化时重新渲染 . 那么为什么我会直接看到我对真实 DOM 所做的更改呢? 我知道我正在修改真实的 DOM,但是当我根本没有改变状态时触发重新渲染的是什么。 import R
Xcode beta 5 推出 @FetchRequest对于 SwiftUI。 我有一个 View ,它有一个 @FetchRequest . NSFetchRequest是在管理器中创建的,该管理
关闭。这个问题需要更多 focused .它目前不接受答案。 想改进这个问题?更新问题,使其仅关注一个问题 editing this post . 7年前关闭。 Improve this questi
我有一个表达式[text][id]应替换为链接 text 解决方案是( id 是整数) $s = preg_replace("/\[([^\]]+)(\]*)\]\[([0-9]+)\]/","$1$
我在 repo 中有一个文件,我不想让任何人更新。 我能做什么? 最佳答案 你想要svn锁:http://www.linxit.de/svnbook/en/1.2/svn.ref.svn.c.lock
说我有项目 list 。我想导出到csv,但在此之前我想做一些计算/修改。 基本上,设置如下所示: PS C:\Files> gci Directory: C:\Files Mode
我有一个非常简单的问题 - 是否可以修改 Java API 的源代码,例如Junit,JABX ? 我知道这似乎是一个非常愚蠢的问题,但它一直困扰着我一段时间。 最佳答案 如果您可以掌握源代码,那么请
我有一个带有变量/列的小标题,其中包括不同形状的小标题列表。我想为其中一个变量中的每个(子)标题添加一个变量/列。 例如此类数据 library("tibble") aaa aaa # A tibb
我有几个菜单,可以在单击时向当前链接添加变量。这是一个例子: 1 2 3 x y z 我的问题是,如果我选择“y”2次,它会添加“&cord=y”2次。相反,我希望它替
我有两个项目:一个服务项目和一个服务安装程序项目。服务项目具有适合我的产品的装配信息。它包括公司信息和正确的服务名称。一旦服务实际安装,所有这些似乎都会被忽略。安装服务时,它使用在服务安装程序的ini
以下代码何时可能产生副作用? @some = map { s/xxx/y/; $_ } @some; perlcritic 将其解释为危险的,因为例如: @other = map { s/xxx/y/
我想知道以下哪种解决方案更好:我想修改一些 .class 文件,我意识到有两种方法可以做到这一点: 反编译.class文件,修改它,最后再次编译。 - 直接用十六进制编辑器修改。 谢谢 最佳答案 在这
这是我的按钮代码 onclick 我希望我的程序等待用户单击一个 JPanel,并且当用户单击 JPanel 时,它应该在控制台上打印其名称。 此按钮代码未显示输出 JPopupMenu popu
我正在使用一个具有“getName()”方法的特定 API。 getName() 返回一个字符串。是否可以修改该字符串? API 中不包含修饰符方法,并且 String getName() 返回的是私
我是一名优秀的程序员,十分优秀!