每当我尝试去另一个活动时,应用程序都会崩溃。这是我的源代码:
Main.Java
public class Main extends ListActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// storing string resources into Array
String[] adobe_products ;
adobe_products = getResources().getStringArray(R.array.adobe_products);
// Binding resources Array to ListAdapter
this.setListAdapter(new ArrayAdapter<String>(this, R.layout.row,R.id.weekofday, adobe_products));
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);
}
});
}
}
SingleListItem.java
public class SingleListItem extends Activity{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.setContentView(R.layout.row);
TextView txtProduct = (TextView) findViewById(R.id.title);
TextView txtProduct2 = (TextView) findViewById(R.id.product_label2);
Intent i = getIntent();
// getting attached intent data
String product = (String) i.getStringExtra("product");
// displaying selected product name
txtProduct.setText(product);
txtProduct.setTextColor(Color.RED);
if(product.equals("Odilo Globocnik"))
{
txtProduct2.setText(R.string.Odilo_Globocnik);
txtProduct2.setTextColor(Color.BLUE);
}
else if (product.equals("Josef Kramer"))
{
txtProduct2.setText(R.string.Josef_Kramer);
txtProduct2.setTextColor(Color.BLUE);
}
else if (product.equals("Paul Blobel"))
{
txtProduct2.setText(R.string.Paul_Blobel);
txtProduct2.setTextColor(Color.BLUE);
}
else if (product.equals("Friedrich Jeckeln"))
{
txtProduct2.setText(R.string.Friedrich_Jeckeln);
txtProduct2.setTextColor(Color.BLUE);
}
}
}
Row.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:orientation="horizontal">
<ImageView
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"/>
<TextView
android:id="@+id/weekofday"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
Singleitemlist.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />
<TextView
android:id="@+id/product_label2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Medium Text"
android:textAppearance="?android:attr/textAppearanceMedium" />
</LinearLayout>
main.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="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
清单有:
<activity android:name=".SingleListItem"
android:label="Single Item Selected">
</activity>
logcat的:
12-30 23:13:55.129: E/AndroidRuntime(19016): Caused by: java.lang.RuntimeException: Your content must have a ListView whose id attribute is 'android.R.id.list'
12-30 23:13:55.129: E/AndroidRuntime(19016): at android.app.ListActivity.onContentChanged(ListActivity.java:243)
12-30 23:13:55.129: E/AndroidRuntime(19016): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:210)
12-30 23:13:55.129: E/AndroidRuntime(19016): at android.app.Activity.setContentView(Activity.java:1657)
12-30 23:13:55.129: E/AndroidRuntime(19016): at com.example.booktest.Main.onCreate(Main.java:20)
12-30 23:13:55.129: E/AndroidRuntime(19016): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
12-30 23:13:55.129: E/AndroidRuntime(19016): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1617)
12-30 23:13:55.129: E/AndroidRuntime(19016): ... 11 more
12-30 23:15:35.189: W/dalvikvm(19093): threadid=1: thread exiting with uncaught exception (group=0x40018560)
12-30 23:15:35.199: E/AndroidRuntime(19093): FATAL EXCEPTION: main
12-30 23:15:35.199: E/AndroidRuntime(19093): java.lang.ClassCastException: android.widget.LinearLayout
12-30 23:15:35.199: E/AndroidRuntime(19093): at com.example.booktest.Main$1.onItemClick(Main.java:40)
12-30 23:15:35.199: E/AndroidRuntime(19093): at android.widget.AdapterView.performItemClick(AdapterView.java:284)
12-30 23:15:35.199: E/AndroidRuntime(19093): at android.widget.ListView.performItemClick(ListView.java:3513)
12-30 23:15:35.199: E/AndroidRuntime(19093): at android.widget.AbsListView$PerformClick.run(AbsListView.java:1812)
12-30 23:15:35.199: E/AndroidRuntime(19093): at android.os.Handler.handleCallback(Handler.java:587)
12-30 23:15:35.199: E/AndroidRuntime(19093): at android.os.Handler.dispatchMessage(Handler.java:92)
12-30 23:15:35.199: E/AndroidRuntime(19093): at android.os.Looper.loop(Looper.java:130)
12-30 23:15:35.199: E/AndroidRuntime(19093): at android.app.ActivityThread.main(ActivityThread.java:3737)
12-30 23:15:35.199: E/AndroidRuntime(19093):
我知道我的变量名称很糟糕。我会尽快改变它们。
编辑:新的CatLog:
12-30 23:51:19.759: E/AndroidRuntime(19744): Caused by: java.lang.NullPointerException
12-30 23:51:19.759: E/AndroidRuntime(19744): at com.example.booktest.SingleListItem.onCreate(SingleListItem.java:22)
12-30 23:51:19.759: E/AndroidRuntime(19744): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
12-30 23:51:19.759: E/AndroidRuntime(19744): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1617)
12-30 23:51:19.759: E/AndroidRuntime(19744): ... 11 more
答案 0 :(得分:3)
java.lang.ClassCastException: android.widget.LinearLayout
at com.example.booktest.Main$1.onItemClick(Main.java:40)
你的应用程序崩溃了:
String product = ((TextView) view).getText().toString();
因为view
是LinearLayout而不是TextView。尝试:
String product = ((TextView) view.findViewById(R.id.weekOfDay)).getText().toString();
<强>加成强>
你可以看到这是一个不同的LogCat,这里的问题是:
Caused by: java.lang.NullPointerException
at com.example.booktest.SingleListItem.onCreate(SingleListItem.java:22)
如果你看第22行的SingleListItem,你会发现:
txtProduct.setText(product);
所以txtProduct
为空。这意味着findViewById(R.id.title)
找不到ID为@+id/title
的yor布局中的任何视图。让我们来看看你正在加载什么视图:
this.setContentView(R.layout.row);
嗯,row.xml
没有title
(或product_label2.xml
)的TextView。你加载了错误的布局,使用:
this.setContentView(R.layout.singleitemlist);
现在我无法引导您完成调试应用的每一步。但根据我上面的建议,你应该了解如何阅读你的LogCat。堆栈跟踪(LogCat错误)将引导您直接解决问题。
请点击复选标记接受此答案作为原始问题的解决方案,如果您无法解决将来的错误,请提出新问题。祝好运! :)
答案 1 :(得分:1)
Sam的回答是100%正确,您的Main
活动还有另一个错误。
Caused by: java.lang.RuntimeException: Your content must have a ListView whose id attribute is 'android.R.id.list'
12-30 23:13:55.129: E/AndroidRuntime(19016): at android.app.ListActivity.onContentChanged(ListActivity.java:243)
因为您扩展了ListActivity,所以Android代码正在寻找具有特定ID的ListView。你需要改变:
main.xml中
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
到此:
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
如果您了解 ,我们从LogCat 获得了这些答案,这是一个非常有价值的课程,您将能够自己解决许多错误。在您需要再次发布之前的未来: - )
答案 2 :(得分:0)
我不确定您是否从extras
获取Intent
数据。
试试这个:
Bundle extras = getIntent().getExtras();
if (extras != null) {
product = extras.getString("product");
}