0

コード-

package myusic.app.activity;
import java.util.ArrayList;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;

public class MyusicActivity extends Activity {
    ArrayList<String> listItems=new ArrayList<String>();

    ArrayAdapter<String> adapter;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        adapter=new ArrayAdapter<String>(this,
                android.R.layout.simple_list_item_1,
                listItems);
        ListView myList=(ListView)findViewById(android.R.id.list);
        myList.setAdapter(adapter);
    }

    public void addItems(View v) {
         listItems.add("Clicked");
         adapter.notifyDataSetChanged();
        }
}

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/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Myusic player"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <Button
        android:id="@+id/b1"
        style="?android:attr/buttonStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Add" 
        android:onClick="addItems"
        />

    <ListView
        android:id="@+id/list"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" 
        >
    </ListView>

</LinearLayout>

電話で実行したときに表示されるエラーは次のとおりです。

The application Myusic(process myusic.app.activity) has stopped unexpectedly. Please try again.

この行を削除しようとしたため、エラーが行にあると思います。エラーはmyList.setAdapter(adapter)表示されませんが、ボタンを押すと明らかにエラーが発生します。これで私を助けてください。前もって感謝します。:)

4

1 に答える 1

2

エラーはListView、レイアウトXMLで自分のIDを:として持っていて、別のIDを使用してメソッド@+id/listでそれを見つけようとしていることです。onCreate()

したがって、コード行を変更して、次のようなlistViewを取得します。

ListView myList=(ListView)findViewById(R.id.list);

または、レイアウト上のListViewのIDを次のように変更します。

<ListView
        android:id="@+android:id/list"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" 
        />
于 2012-06-20T08:46:09.613 に答える