- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
好吧,我试图在更改数据后获取我的 ListView 高度,但它总是返回之前的高度,而不是实际高度。
所以当我设置 setadapter 时,它会得到旧值。例如:
ActualHeight = 100
Change data (filter) -> NewHeight = 60
ListView.GetHeight still returns 100.
Again
ActualHeight = 60
Change data (filter) -> NewHeight = 20
ListView.GetHeight still returns 60.
我使用的代码是:
int width, height = 0;
EditText edt_search;
ListView lv_marca;
List<Marca> list_marca = new ArrayList<Marca>();
List<Marca> list_marca_search = new ArrayList<Marca>();
String text = edt_search.getText().toString();
list_marca_search.clear();
if(text.startsWith(".")){
text = text.replace(".", "");
for (Marca m : list_marca) {
if (String.valueOf(m.getCd_marca()).equals(text)){
list_marca_search.add(m);
}
}
} else {
for (Marca m : lista_marca) {
if (m.getDs_marca().contains(text)){
list_marca_search.add(m);
}
}
}
ArrayAdapter<Marca> adapter_marca = new CustomAdapter_Marca(MyDialog.this, R.layout.layout_consulta_estoque_marca_lista, list_marca_search);
lv_marca.setAdapter(adapter_marca);
int height_window = getWindowManager().getDefaultDisplay().getHeight();
height = lv_marca.getHeight() + getSupportActionBar().getHeight();
if (height >= height_window) {
height = (int) (height_window * 0.95);
}
getWindow().setLayout(width, height);
最佳答案
好的,我找到了解决方案。
当我在我的 ListView 中更改 SetAdapter 时,我得到了表示一行的测量高度,然后乘以行号加上分隔线高度也乘以行号。
这是我做的一个例子,我不知道这是不是更好的方法,但它工作得很好^^:
ListView lv_marca;
lv_marca.setAdapter(adapter_marca);
int list_height = getListViewHeight(lv_marca);
private int getListViewHeight(ListView list) {
ListAdapter adapter = list.getAdapter();
int listviewHeight = 0;
list.measure(MeasureSpec.makeMeasureSpec(MeasureSpec.UNSPECIFIED, MeasureSpec.UNSPECIFIED),
MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
listviewHeight = list.getMeasuredHeight() * adapter.getCount() + (adapter.getCount() * list.getDividerHeight());
return listviewHeight;
}
关于android - setadapter后获取ListView高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12411060/
我在我的 fragment 类上使用 ExpandableListView,运行时出现以下错误, `java.lang.RuntimeException: For ExpandableListVie
我使用Recycleview创建了一个“水平 ListView ”。 由于我的程序中有 async 任务,我无法从 fetchbook 类检索图书结果,因此我需要在类内设置适配器。 我的代码如下所示:
当我在 fragment 类中的代码底部调用 setAdapter 方法时,它导致我的应用程序在启动前崩溃。但是,当我将其注释掉时,该应用程序运行良好(显然没有适配器)。 package com.ex
当我在设置我的 ArrayList 后在我的构造函数中调用 .notifyDataSetChanged() 时,我的应用程序仍然崩溃,就像我在调用 .setAdapter 之前调用它一样,困扰我好几个
这个问题在这里已经有了答案: findViewById returning null in fragment (2 个答案) What is a NullPointerException, and
我正在尝试创建一个自定义的 ListView 适配器(大致基于 this tutorial ,但这个示例很简单,我怀疑您是否需要查看它)。 NewsEntriesAdapter.java public
我试图在 ListView 上设置适配器,但他们告诉我这个错误 Constructor 'com.test.test.MainActivity.Listview1Adapter.Listview1
使用 memberRecList RecyclerView,我尝试水平列出组中的每个成员,但在设置其适配器时遇到此问题: java.lang.IllegalStateException: The sp
我发现了几个与此类似的问题,但没有一个能解决我的问题。这是我写的代码 - DataBaseHelper dataBaseHelper; ArrayAdapter mAdapter; ListView
最后一行有一个NPE,我不知道它来自哪里。有什么想法吗? mySQLiteAdapter = new SQLiteAdapter(this); mySQLiteAdapter.openToRe
我只知道填充ListView的一种方法 my_listviev.setAdapter( new ArrayAdapter(this,android.R.layout.simple_list_ite
我有一个带有 3 个选项卡的 Activity,其中第一个是带有 ListView 的 fragment 。 ListView 有自定义适配器。当我开始以及当我进入第二个选项卡并返回时没有问题。但是当
当我 catch NPE 时,我正在做 Coursera 类(class)的作业。这个问题好几天都无法解决,不解决就无法继续。谷歌没有帮助。页面下方更新了代码这是我的代码: 主要 Activity L
我正在尝试使用游标适配器,但是当我调用setAdapter时出现空指针异常,我不知道问题出在哪里。代码如下: 主要 fragment : public class GroupsFragment ext
我正在尝试创建一个简单的应用程序,当单击操作栏中的“连接”项时,它会在对话框中显示已配对蓝牙设备的列表。这是我正在膨胀的对话框的 XML: 这是 MainActivity.ja
有没有可能使用仅包含特定项目的 setAdapter 在 ListView 中添加项目?例如,我想在 ListView 中添加一个仅包含日期“2015 年 2 月 15 日”的项目。 代码如下:
我在pager.setAdapter(tabpager); 这是代码,请检查一下,让我知道错误 主要 Activity 的 Java 代码 package com.example.protot
我不明白为什么 NPE 会在这里发生。花了很多时间试图弄清楚这一点。使用日志我发现崩溃的地方(Records.class ...向下滚动)。如果需要,我还会提供每个代码文件。我发现它不是上下文为空。
嗨我有一个使用 setAdapter 绑定(bind)数据的 ListView ,但是当我尝试绑定(bind)时它显示空点异常 public void onCreate(Bundle savedIns
我有三个可滑动的标签。在第一个选项卡中,我有一个包含 1000 多个项目的 ListView 。 我尝试使用 Asynctask 和 Runnable 填充列表,我对此没有问题。 问题是当我试图将适配
我是一名优秀的程序员,十分优秀!