在ListView for 4.1.1v设备-Android中显示空行

时间:2014-05-13 10:38:33

标签: android eclipse listview android-listview

自定义ListView 中,所有行都为空! ..数据没有出现!我不知道问题究竟在哪里,我在许多设备上执行相同的.apk文件,但是,除了安装了4.1.1版本的android设备之外,它在所有设备上都能正确运行。真的我不知道apk在一台设备上运行而在另一台设备上运行的问题在哪里?! (这会让我发疯)..

自定义ListView代码(我确定问题不在代码中,因为它在其他设备上运行,数据出现在ListView上):

public class ListViewCustomAdapter extends BaseAdapter {
public String title[];
public String description[];
public String curr[];
public int size,fontsize;
public Activity context;
public LayoutInflater inflater;

public showAccounts accounts;

public ListViewCustomAdapter(Activity context,String[] title, String[] description, String[] curr) {
    super();

    this.context = context;
    this.accounts=new showAccounts();
    this.title = title;
    this.description = description;
    this.curr = curr;
    this.inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}

public int getCount() {
    // TODO Auto-generated method stub
    return title.length;
}

public Object getItem(int position) {
    // TODO Auto-generated method stub
    return null;
}

public long getItemId(int position) {
    // TODO Auto-generated method stub
    return 0;
}

public static class ViewHolder {
    ImageView imgViewLogo;
    TextView txtViewTitle;
    TextView txtViewDescription;
    TextView txtViewcurr;
}


public View getView(int position, View convertView, ViewGroup parent) {
    // TODO Auto-generated method stub
    ViewHolder holder;
    //Define the size of layout 
    size=accounts.getsize();
    fontsize=accounts.getfont();

    if(convertView==null){
        holder = new ViewHolder();
        convertView = inflater.inflate(R.layout.accountlist, null);

        holder.txtViewTitle = (TextView) convertView.findViewById(R.id.textView);
        holder.txtViewTitle.setWidth(size*2); 
        holder.txtViewTitle.setTextSize(TypedValue.COMPLEX_UNIT_SP,fontsize);

        holder.txtViewDescription = (TextView) convertView.findViewById(R.id.textView1);
        holder.txtViewDescription.setWidth(size);   
        holder.txtViewDescription.setTextSize(TypedValue.COMPLEX_UNIT_SP,fontsize);

        holder.txtViewcurr = (TextView) convertView.findViewById(R.id.textView2);
        holder.txtViewcurr.setWidth(size/2);   
        holder.txtViewcurr.setTextSize(TypedValue.COMPLEX_UNIT_SP,fontsize);

        if ( position % 2 == 0 ){
            convertView.setBackgroundColor(Color.parseColor("#96c4fa"));

        }else{
            convertView.setBackgroundColor(Color.parseColor("#e9e9e9"));
        }

        convertView.setTag(holder);

    } else {
        holder=(ViewHolder)convertView.getTag();
        if ( position % 2 == 0 ){
            convertView.setBackgroundColor(Color.parseColor("#96c4fa"));

        }else{
            convertView.setBackgroundColor(Color.parseColor("#e9e9e9"));
        }
    }

    holder.txtViewTitle.setText(title[position]);
    holder.txtViewDescription.setText(description[position]);
    holder.txtViewcurr.setText(curr[position]);

    return convertView;
}
}

accountlist.xml代码

  <?xml version="1.0" encoding="utf-8"?>
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:gravity="right"
            android:orientation="horizontal">

<TextView
       android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@android:color/black"
        android:gravity="right"

 />
<TextView
       android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@android:color/black"
        android:gravity="right"

 />

<TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@android:color/black"
        android:gravity="right"

        />

 <ImageView
        android:id="@+id/imageView"
        android:src="@drawable/wuser"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="right"/>

  </LinearLayout>
  • 我尝试通过Eclipse在真实设备上执行apk以查看问题所在(但设备未出现在列表中)。
  • 我不认为代码中存在问题,因为apk的代码在其他设备上运行
  • 或者问题可能与apk的使用空间有关?我其实不知道!
  • 你可以看到解释我问题的两张图片。

enter image description here

任何帮助将不胜感激,

修改

我的问题解决了!我只是重置了设备,一切顺利!真的,以前,我不认为病毒会导致这些问题,这些影响对其他应用程序等。但是,要好好注意并知道经过这么长时间才能解决这个问题!

2 个答案:

答案 0 :(得分:1)

您的问题在于以正确的方式设置文本视图的宽度,以及为文本大小设置相同的内容。因此,尝试删除或注释与设置宽度和大小相关的代码,例如这些代码行

 holder.txtViewTitle.setWidth(size*2); 
 holder.txtViewTitle.setTextSize(TypedValue.COMPLEX_UNIT_SP,fontsize);

然后在您的特定模拟器或设备上运行代码,然后您将看到文本的外观。请注意(从我的角度来看)修复字体大小和视图宽度是错误的,因此您必须找到一种方法来根据设备的屏幕宽度调整大小。

答案 1 :(得分:0)

首先初始化变量title,description和curr。

例如。 this.title=new title[title.length];

与上面相同,初始化所有数组变量。