导航:首页 > 操作系统 > android获取item高度

android获取item高度

发布时间:2025-01-08 21:51:38

android listView 如何固定item的个数,剩下的滑动显示

不能不定个数,只能固定高度,如果需要固定为4个item,那么你可以算出来每个item的高度X4 ,再将listView的高度=item的高度X4。
1、配置文件里ListView高度设置为 warp_content
2、在代码中加载ListView数据,
3、数据加载完成后(setAdapter或者notifyDataSetChanged之后),重新计算item高度,然后item X 4 = listView的高度
listView.setAdapter(adapter);
View listItem = adapter.getView(0,null,listView);
listItem.measure(0, 0);
int totalHei = (listItem.getMeasuredHeight()+listView.getDividerHeight() ) * 4;
listView.getLayoutparams().height = totalHei;

仅供参考,没测试。你可以试试。。。

Ⅱ android 实现recyclerview item大于多少以后高度固定可以滑动

提供一个思路:你可以在父类做一个控制,由父类的布局来限制recyclerview的高度,然后根据 recyclerview要显示的item多少计算item的高度来设置父类布局的最大高度。

Ⅲ listview怎样设置每个Item的高度

1.在ListView的布局文件中把属性android:layout_height设置成"wrap_content"
<ListView
android:cacheColorHint="#00000000"
android:textColor="#ff435346"
android:textSize = "20sp"
android:id="@id/android:list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout="@+id/textViewCurrentBase"
android:listSelector="#00000000"
android:drawSelectorOnTop="false"/>

2.设置子项xml文件(比如这里把一个item.xml设置成ListView的一行)的各个控件android:layout_height的值。这里80sp+40sp就是你需要的一行的高度了。
item.xml如下:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/TextView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView android:focusable="false"
android:textColor="@drawable/white"
android:id="@+id/ItemTitle"
android:layout_height="80sp"
android:layout_width="fill_parent" />
<TextView android:focusable="false"
android:id="@+id/ItemText"
android:textColor="@drawable/blue"
android:layout_height="40sp"
android:layout_width="wrap_content"
android:layout_below="@+id/ItemTitle" />
<Button
android:id="@+id/ItemButton"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentRight="true" />
</RelativeLayout>

阅读全文

与android获取item高度相关的资料

热点内容
手机桌面文件夹变小了怎么办 浏览:573
日程管理app哪个好 浏览:701
黑马程序员云开发实战 浏览:597
加密空间上传作品 浏览:398
备忘录清空的如何恢复安卓 浏览:170
剑三霸刀宏命令 浏览:36
手机zip文件的解压方式 浏览:189
顺丰金融app在哪里可以下载 浏览:930
微信无法应用加密怎么办 浏览:464
sw装配体能不能加密 浏览:751
python列表中提取偶数 浏览:835
腾讯云服务器购买教程技巧 浏览:808
盐官观潮时间算法 浏览:931
虚拟机linux上不了网 浏览:444
pythonu字符串转 浏览:205
没有pc版本的安卓系统怎么办 浏览:901
域服务器如何备份 浏览:857
程序员数据狗 浏览:554
电子表的加密方法 浏览:100
会玩app里面怎么找五子棋 浏览:398