繁体   English   中英

java.lang.ClassCastException:android.widget.RelativeLayout

[英]java.lang.ClassCastException: android.widget.RelativeLayout

我开发了一个简单的listview应用程序,它显示了listview但是当我选择一个listview我得到以下错误。

这是我的单个列表项XML文件。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="match_parent"
  android:layout_height="match_parent">

<TextView android:id="@+id/product_label"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textSize="25dip"
        android:textStyle="bold"
        android:padding="10dip"
        android:textColor="#ffffff"/>   
</LinearLayout>

这是我的MainActivity.java文件

import java.util.List;

import android.app.ListActivity;
import android.app.ProgressDialog;
import android.os.Bundle;
import android.widget.Toast;
import android.content.Intent;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;

import android.widget.ListView;
import android.widget.TextView;

public class MainActivity extends ListActivity implements FetchDataListener{
private ProgressDialog dialog;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);        
    setContentView(R.layout.activity_main);        
    initView(); 

    ListView lv = getListView();

    // listening to single list item on click
    lv.setOnItemClickListener(new OnItemClickListener() {
      public void onItemClick(AdapterView<?> parent, View view,
          int position, long id) {

          // selected item
          String product = ((TextView) view).getText().toString();

          // Launching new Activity on selecting single List Item
          Intent i = new Intent(getApplicationContext(), SingleListItem.class);
          // sending data to new activity
          i.putExtra("product", product);
          startActivity(i);

      }
    });

}

private void initView() {
    // show progress dialog
    dialog = ProgressDialog.show(this, "", "Loading...");

    String url = "http://pubbapp.comze.com/pubapp.php";
    FetchDataTask task = new FetchDataTask(this);
    task.execute(url);
}

@Override
public void onFetchComplete(List<Application> data) {
    // dismiss the progress dialog
    if(dialog != null)  dialog.dismiss();
    // create new adapter
    ApplicationAdapter adapter = new ApplicationAdapter(this, data);
    // set the adapter to list
    setListAdapter(adapter);        
}

@Override
public void onFetchFailure(String msg) {
    // dismiss the progress dialog
    if(dialog != null)  dialog.dismiss();
    // show failure message
    Toast.makeText(this, msg, Toast.LENGTH_LONG).show();        
}
}

这是我的第二个屏幕java文件,

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TextView;

public class SingleListItem extends Activity{
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    this.setContentView(R.layout.single_list_item_view);

    TextView txtProduct = (TextView) findViewById(R.id.product_label);

    Intent i = getIntent();
    // getting attached intent data
    String product = i.getStringExtra("product");
    // displaying selected product name
    txtProduct.setText(product);

}
}

我不知道如何解决这个错误。 有人可以帮我解决这个问题吗?

当你得到:

java.lang.ClassCastException: android.widget.RelativeLayout

因为这里:

      String product = ((TextView) view).getText().toString();

您正在尝试将ListView选定的行视图(RelativeLayout)强制转换为TextView。 如果要从选定的行布局访问TextView,请执行以下操作:

    TextView txtview = ((TextView) view.findViewById(R.id.your_textview_id));
    String product = txtview.getText().toString();

更改

// selected item
          String product = ((TextView) view).getText().toString();

TextView txtview= (TextView) view.findViewById(R.id.product_label);
String product = txtview.getText().toString();

右键单击项目,然后在列表中选择属性。 转到java构建路径将Gen文件夹移动到up并将src文件夹移动到down。 清理项目并运行。如果它没有告诉我这对我有用吗?

如果您使用ListItem的自定义xml文件,那么您可以使用您在xml文件中编写的textview id。使用注释行替换这些行

 //   String product = ((TextView) view).getText().toString();
 TextView txtview= (TextView) view.findViewById(R.id.your_textview_id);
 String product = txtview.getText().toString();

如果您在适配器中使用android.R.layout.simple_list_item_1,则必须在代码中设置android.R.id.text1资源ID。 同样适用于这种情况

 //   String product = ((TextView) view).getText().toString();
 TextView txtview= (TextView) view.findViewById(android.R.id.text1);
 String product = txtview.getText().toString();

对于Eg。

 // listening to single list item on click
lv.setOnItemClickListener(new OnItemClickListener() {
  public void onItemClick(AdapterView<?> parent, View view,
      int position, long id) {

      // selected item------------->replace below line with this
       // String product = ((TextView) view).getText().toString();
        TextView txtview= (TextView) view.findViewById(R.id.your_textview_id);
        String product = txtview.getText().toString();



      // Launching new Activity on selecting single List Item
      Intent i = new Intent(MainActivity.this, SingleListItem.class);
      // sending data to new activity
      i.putExtra("product", product);
      startActivity(i);

  }
});

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM