我是StackOverflow的新手,也是Android开发的新手,我在开发某个应用程序时遇到了一个非常恼人的问题。我的主要活动上有两个按钮,一个"添加客户"按钮和"显示客户"按钮,每个按钮都会导致各自的活动。
首先,只有“添加客户”按钮才能正常工作并成功转到其活动而没有任何问题。 “显示客户”按钮会导致应用程序强行关闭。
此时,我原本认为我的“显示客户”按钮工作不正常,所以为了测试这个,我已经切换了每个按钮所导致的活动,以便查看“添加客户”按钮是否会再次成功导致显示客户活动。测试完成后,“添加客户”按钮实际上现在导致应用程序强制关闭,“显示客户”按钮工作并转到“添加客户”活动。
完成此操作后,我知道实际的Show Customers活动出现了问题,而不是Show Customers按钮本身,但我完全不知道为什么它不起作用。所有活动都在清单中。我相信我的Show Customer xml代码有问题。下面我将发布我目前为应用程序提供的所有代码:
MainActivity.java
package bcs421.jorgeramirez.lab.layouts;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class MainActivity extends Activity implements OnClickListener {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button addCustButton = (Button)findViewById(R.id.button_add_customer);
Button showCustButton = (Button)findViewById(R.id.button_show);
addCustButton.setOnClickListener(this);
showCustButton.setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch (v.getId())
{
case R.id.button_add_customer:
Intent intent1 = new Intent(MainActivity.this, AddCustomerActivity.class);
startActivity(intent1);
break;
case R.id.button_show:
Intent intent2 = new Intent(MainActivity.this, ShowCustomerActivity.class);
startActivity(intent2);
break;
default:
break;
}
}
}
ShowCustomerActivity.java
package bcs421.jorgeramirez.lab.layouts;
import java.util.ArrayList;
import java.util.Arrays;
import android.app.Activity;
import android.app.ListActivity;
import android.content.Context;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.ListView;
import android.widget.Toast;
public class ShowCustomerActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_show_customer);
ListView listNames;
ArrayAdapter<String> listAdapter;
listNames = (ListView)findViewById(R.id.listView);
String [] names = new String[] {"Derek Jeter", "David Robertson", "Mark Texiera"};
ArrayList<String> nameArray = new ArrayList<String>();
nameArray.addAll(Arrays.asList(names));
listAdapter = new ArrayAdapter<String>(this,R.layout.activity_show_customer, nameArray);
listNames.setAdapter(listAdapter);
}
}
activity_show_customer.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ListView>
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
android:textSize="16sp" >
</TextView>
</LinearLayout>
的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="bcs421.jorgeramirez.lab.layouts"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="17"
android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".AddCustomerActivity"
android:label="@string/app_name" >
</activity>
<activity
android:name=".ShowCustomerActivity"
android:label="@string/app_name" >
</activity>
</application>
</manifest>
我知道我应该发布一个logcat,但老实说我不知道怎么做到这一点我已经在我的手机上测试了应用程序,因为我无法通过某种原因启动AVD。我在网站和网上搜索了一个解决方案,但我似乎找不到一个。任何帮助将不胜感激!先谢谢你们。
答案 0 :(得分:0)
我看到的一个潜在问题出在以下几行:
listAdapter = new ArrayAdapter<String>(this,R.layout.activity_show_customer, nameArray);
您已使用 R.layout.activity_show_customer
,这是您的布局文件的ID。您需要使用资源的id来告诉它列表视图中单个项目的布局。像android.R.layout.simple_list_item_1
这样的东西。结帐ArrayAdapter in android to create simple listview
答案 1 :(得分:0)
是的,问题在于您的ShowCustomerActivity ..您将活动布局传递给ArrayAdapter,这是错误的
public class ShowCustomerActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_show_customer);
ListView listNames;
ArrayAdapter<String> listAdapter;
listNames = (ListView)findViewById(R.id.listView);
String [] names = new String[] {"Derek Jeter", "David Robertson", "Mark Texiera"};
ArrayList<String> nameArray = new ArrayList<String>();
nameArray.addAll(Arrays.asList(names));
listAdapter = new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1, nameArray);
//The layout should be your list Item layout and not the activity layout.
listNames.setAdapter(listAdapter);
}