android-列表视图中传递int值到string值

问题描述

列表视图中传递int值到string值
    TextView location=(TextView)template_view.findViewById(R.id.tvlocation);    TextView weather=(TextView)template_view.findViewById(R.id.tvweather);    TextView temp=(TextView)template_view.findViewById(R.id.tvtemp);    TextView dewpoint=(TextView)template_view.findViewById(R.id.tvdew);    TextView humidity=(TextView)template_view.findViewById(R.id.tvhumidity);    TextView windspeed=(TextView)template_view.findViewById(R.id.tvspeed);    TextView winddir=(TextView)template_view.findViewById(R.id.tvdir);    TextView windgust=(TextView)template_view.findViewById(R.id.tvgust);    TextView pressure=(TextView)template_view.findViewById(R.id.tvcondition);    TextView heatindex=(TextView)template_view.findViewById(R.id.tvheat);    TextView visibility=(TextView)template_view.findViewById(R.id.tvvisibility);    TextView precipitation=(TextView)template_view.findViewById(R.id.tvprecipitation);    TextView dailyprecipitation=(TextView)template_view.findViewById(R.id.tvdaily);    TextView sunrise=(TextView)template_view.findViewById(R.id.tvsunrise);    TextView sunset=(TextView)template_view.findViewById(R.id.tvsunset);    location.setText(Voicenames.get(position).getLocation());    weather.setText(Voicenames.get(position).getWeather());    //temp.setText(Voicenames.get(position).getTemp_c());    //dewpoint.setText(Voicenames.get(position).getDewpoint_c());    //windspeed.setText(Voicenames.get(position).getWind_kph());    //windgust.setText(Voicenames.get(position).getWind_gust_kph());    humidity.setText(Voicenames.get(position).getRelative_humidity());    winddir.setText(Voicenames.get(position).getWind_dir());    pressure.setText(Voicenames.get(position).getPressure_mb());    heatindex.setText(Voicenames.get(position).getHeat_index_c());    visibility.setText(Voicenames.get(position).getVisibility_km());    precipitation.setText(Voicenames.get(position).getPrecipitation());    dailyprecipitation.setText(Voicenames.get(position).getDaily_precipitation());    sunrise.setText(Voicenames.get(position).getSunrise());    sunset.setText(Voicenames.get(position).getSunset());

有一个全是string值的列表视图。我将注释放到int值中,然后将int值传递过去,但是总是报出空指针异常。应该怎么解决?

我用到JSONboject。

解决方案

我找到的实现方法:String.valueOf(Voicenames.get(position).getWhatever());

解决方案二:
把具体相关的代码贴出来,不然没有会回答你的问题的, 因为看不懂

时间: 2024-10-31 14:13:30

android-列表视图中传递int值到string值的相关文章

值传递-Android 同一个activity中传递值

问题描述 Android 同一个activity中传递值 在同一activity中传递值,在网友的帮助下认识到如下的存取值方法 public static class HealthMap { private static Map map = new ConcurrentHashMap(); /** * 传值 * @param key * @param obj */ public static void put(String key, Object obj) { map.put(key, obj)

cs aspx-我想往后台.cs程序中传递前台.aspx程序的值 怎么传不了

问题描述 我想往后台.cs程序中传递前台.aspx程序的值 怎么传不了 前台.aspx <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN

android-在列表视图中的map标题

问题描述 android-在列表视图中的map标题 在我的应用程序中,在底部有一个包含了一个图片和一个列表视图的activity.下边的这些是我想在activity中做的. 1.页面顶部的图片视图必须转换类型来显示其他的图片. 2.当列表视图滚动的时候,图片必须跟着他一起滚动. 3.在同样的activity中有一个button,当点击button的时候,图像必须转成一个mapview. 我已经做的是, 1.我已经让图像视图和mapview在试图转换器中成为了一个单独的布局,并且命名为header

mfc中可以设置列表视图中某一项的颜色吗?网上只有设置某一行颜色的办法,,请大神们指点一下??

问题描述 mfc中可以设置列表视图中某一项的颜色吗?网上只有设置某一行颜色的办法,,请大神们指点一下?? mfc中可以设置列表视图中某一项的颜色吗?网上只有设置某一行颜色的办法,,请大神们指点一下,比如我想使列表视图中0行1列的字符串显示为红色,能实现吗 解决方案 设置视图背景颜色

file-如何在Android列表文件中,选中多个文件(用左边的图标选中)

问题描述 如何在Android列表文件中,选中多个文件(用左边的图标选中) listview是用来显示sdcard列表文件的.listview中item的子控件imageButton放的是文件的图标,怎么选中多个imagebutton,来作为选中多个对应的文件,进而对文件进行操作...

列表视图中创建项目

问题描述 privatevoidcreateColumnHeader(){System.Windows.Forms.ColumnHeaderheader;header=newColumnHeader();header.text="名称";this.lvwFile.columns.Add(header);header=newcolumnHeader();header.text="大小";this.lvwFile.columns.Add(header);}请问一下每次创

C语言中交换int型变量的值及转换为字符数组的方法_C 语言

不使用其他变量交换两个整型的值: #include <stdio.h> void main(){ int a = 3; int b = 4; a = a ^ b;//使用异或交换 b = b ^ a; a = a ^ b; printf("%d, %d\n", a, b); a = a - b;//使用加减交换 b = a + b; a = b - a; printf("%d, %d\n", a, b); a ^= b ^= a ^= b; printf

Android用户界面设计:“.NET研究”创建列表视图程序

列表视图(ListView)是Android平台下用于显示不定数量的数据最有用的视图控件之一.在这个教程中,我们将向你展示如何使用ListView来浏览文章列表. 在之前的文章中,你看到了许多关于不同布局控件的教程.在今天这个教程中,你将结合使用它们.应用程序本身非常简单:它将显示文章标题列表,当点击标题时,显示文章内容.这篇文章的节奏将比我们的入门教程更快一些.如果你对基本的Android控件或概念不熟悉你可能需要复习这个网站上我们其它的一些教程,甚至是Android API参考.最终的开源代

Android用户界面设计:创建列表视图程序

列表视图(ListView)是Android平台下用于显示不定数量的数据最有用的视图控件之一.在这个教程中,我们将向你展示如何使用ListView来浏览文章列表. 在之前的文章中,你看到了许多关于不同布局控件的教程.在今天这个教程中,你将结合使用它们.应用程序本身非常简单:它将显示文章标题列表,当点击标题时,显示文章内容.这篇文章的节奏将比我们的入门教程更快一些.如果你对基本的Android控件或概念不熟悉你可能需要复习这个网站上我们其它的一些教程,甚至是Android API参考.最终的开源代