Я пытаюсь создать графический интерфейс, в котором я отображаю 2 кнопки сверху, а затем список, который увеличивается по мере получения данных.
Ранее я добавлял данные в TextView, но затем переключился на ListView, но это привело к сбою приложения.
Вот мой код:
package com.test;
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.ListAdapter;
import android.widget.ListView;
public class MainActivity extends ListActivity implements OnClickListener
{
String[] packets;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button start =(Button)findViewById(R.id.start);
start.setOnClickListener(this);
Button stop =(Button)findViewById(R.id.stop);
stop.setOnClickListener(this);
setListAdapter(new ArrayAdapter<String>(this,R.layout.list_item,packets));
}
public void onClick(View arg0) {
switch(arg0.getId()){
case R.id.start:
((ArrayAdapter)getListAdapter()).add("hello");
break;
}
}
}
Мой main.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button android:id="@+id/start"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Start"
/>
<Button android:id="@+id/stop"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Stop"
/>
<ListView android:id="@+id/list"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
/>
</LinearLayout>
Мой list_item.xml:
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
android:textSize="16sp" >
</TextView>
Вот мой AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.test"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<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>
</application>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_SUPERUSER" />
</manifest>
Вот моя трассировка стека:
Thread [<1> main] (Suspended (exception RuntimeException))
ActivityThread.performLaunchActivity(ActivityThread$ActivityClientRecord, Intent) line: 1630
ActivityThread.handleLaunchActivity(ActivityThread$ActivityClientRecord, Intent) line: 1646
ActivityThread.access$1500(ActivityThread, ActivityThread$ActivityClientRecord, Intent) line: 121
ActivityThread$H.handleMessage(Message) line: 936
ActivityThread$H(Handler).dispatchMessage(Message) line: 99
Looper.loop() line: 123
ActivityThread.main(String[]) line: 3652
Method.invokeNative(Object, Object[], Class, Class[], Class, int, boolean) line: not available [native method]
Method.invoke(Object, Object...) line: 507
ZygoteInit$MethodAndArgsCaller.run() line: 862
ZygoteInit.main(String[]) line: 620
NativeStart.main(String[]) line: not available [native method]
Я хочу, чтобы при нажатии на кнопку пуск привет был добавлен в список.
Я не могу понять, что я делаю не так, пожалуйста, помогите.