listview-ListView android:看不见列表项目

问题描述

ListView android:看不见列表项目
需要在android应用中显示listView。我没有继承listActivity,不知道是不是这个引起错误。

代码:

public class Home extends Activity{    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_home);        startLocation();        createMenuTabs();        final String[] datos = new String[]{""Lista 1""Lista 2""Lista 3""Lista 4""Lista 5""};         ArrayAdapter<String> adaptador = new ArrayAdapter<String>(this android.R.layout.simple_list_item_1 datos);        ListView urban_lines_list = (ListView)findViewById(R.id.urban_lines_list);        urban_lines_list.setAdapter(adaptador);    }}

其中XML文件:

 <LinearLayout android:id=""@+id/Urbano""      android:orientation=""vertical""      android:layout_width=""match_parent""      android:layout_height=""match_parent"" >      <TextView android:id=""@+id/urban_lines""          android:layout_width=""match_parent""          android:layout_height=""match_parent""          android:text=""@string/list_of_lines""/>      <ListView android:id=""@+id/urban_lines_list""          android:layout_width=""match_parent""          android:layout_height=""match_parent""/> </LinearLayout>

解决方案

因为你的xml文件中TextView的高度设置为match_parent导致ListView不显示。
<TextView android:id=""@+id/urban_lines""
android:layout_width=""match_parent""
android:layout_height=""match_parent""

时间: 2025-01-21 05:19:22

listview-ListView android:看不见列表项目的相关文章

Android中使用listview实现qq/微信好友列表

首先附上运行结果: 如果你没有学过listview请你先看一看基本知识.不想再说的那么细了 太多了. 首先是listview布局 <?xml version="1.0" encoding="utf-8"?> <ListView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/lv_view" android

Android Listview之下拉刷新Wifi列表

有些列表信息需要手动去更新,此时比较常用的就是下拉刷新列表,在这里就使用下拉列表来刷新当前Wifi信息 目录结构 界面 关键代码 下拉列表类 package com.example.dropdownrefresh.ui; import java.text.SimpleDateFormat; import java.util.Date; import com.example.dropdownrefresh.R; import android.content.Context; import andr

Android 处理空列表的方法(必看篇)

android中ListView 用来展示数据,如果列表为空的状态,可以通过setEmpty(View)方法设置为空时显示的内容. 布局xml <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android

listview 显示 android

问题描述 listview 显示 android 为什么listview显示数据库数据,第一行可以直接显示,当上下滑动后其余行也能正常显示? 解决方案 android listView 高亮显示在Android的Listview中显示多种视图在Android的Listview中显示多种视图 解决方案二: 这是说什么呢,完全看不懂 解决方案三: 滑动时,会取position索引处的数据,填充到对应的item视图中 解决方案四: 问题问的太模糊了!都不知道问的什么东东! 解决方案五: 你的问题应该是

link环境下制作一款《订餐软件》,listview如何实现点餐列表?

问题描述 link环境下制作一款<订餐软件>,listview如何实现点餐列表? link环境下制作一款<订餐软件>,listview如何实现点餐列表? 解决方案 有很多的方式可以实现,比如datagrid或者listview都是可以的. 解决方案二: 把目前提供的餐饮放在数据库中,通过listview显示出来,最好有图片,方便直观

Android实现qq列表式的分类悬浮提示_Android

效果图: 这种效果的实现这里是采用自定义ExpandableListView,给它设置一个指示布局,在滑动过程中监听当前是否应该悬浮显示分类来实现的.今天抽时间,整理了下代码,记录一下使用过程,以便有类似的需求的时候可以快速搞定. 话不多说,我们直接看代码和使用方法. 一 项目结构 上边儿三个类分别是我们的自定义ExpandableListView,主界面,以及ExpandableListView使用的Adapter.下边儿几个xml文件分别是主界面布局,指示器布局,ExpandableList

Android仿QQ列表滑动删除操作_Android

这篇山寨一个新版QQ的列表滑动删除,上篇有说到QQ的滑动删除,推测原理就是ListView本身每个item存在一个Button,只不过普通的状态下隐藏掉了,检测到向左的滑动事件的时候弹出隐藏的Button,不过再切换Button状态的时候会给Button一个出现和隐藏的动画.下面实现这个ListView.  首先有个难点就是通过ListView获取它某个item的View,对于ViewGroup,可以直接调用getChildAt()方法获取对应的子view,但是在ListView直接使用getC

Android多级树形列表控件_Android

我们开发app过程中,经常会碰到需要 多级列表展示的效果.而Android原生sdk中根本没有3级 4级甚至更多级别的列表控件. 所以我们就要自己去实现一个类似treeListView 的控件,下面这个是我项目中的一个效果图,可支持多级列表扩展.    android中有ExpandListView控件,但是这个控件只支持两级列表.对于多级列表如果重写这个不是很好用. 实现这种列表 思想就是递归,构造一个子父级的关系. 话不多说 代码中体会 Activity package com.exampl

Android实现qq列表式的分类悬浮提示

效果图: 这种效果的实现这里是采用自定义ExpandableListView,给它设置一个指示布局,在滑动过程中监听当前是否应该悬浮显示分类来实现的.今天抽时间,整理了下代码,记录一下使用过程,以便有类似的需求的时候可以快速搞定. 话不多说,我们直接看代码和使用方法. 一 项目结构 上边儿三个类分别是我们的自定义ExpandableListView,主界面,以及ExpandableListView使用的Adapter.下边儿几个xml文件分别是主界面布局,指示器布局,ExpandableList