0

ListView行をクリックすると、名前やその他の詳細が記載されたページに移動する場所を作成しようとしています。私はそれを機能させるために何日も費やしましたが、現時点では、行をクリックすると空白のページに移動するだけです. 多くの質問を検索しましたが、新しいページにタイトルを追加するものはありません! これが私のリストビューアクティビティです:

package com.example.cookbook;

import java.util.ArrayList;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.AdapterView.OnItemClickListener;
import android.view.View;

public class SecondScreenActivity extends Activity
{

    ArrayList<String> RecipeList;
    public void onCreate(Bundle saveInstanceState)
    {
            super.onCreate(saveInstanceState);
            setContentView(R.layout.main);

           // Get the reference of ListViewRecipes
            ListView RecipeListView=(ListView)findViewById(R.id.mainListView);


             RecipeList = new ArrayList<String>();
             getRecipeNames();
             // Create The Adapter with passing ArrayList as 3rd parameter
             ArrayAdapter<String> arrayAdapter =      
             new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1, RecipeList);
             // Set The Adapter
             RecipeListView.setAdapter(arrayAdapter); 

             // register onClickListener to handle click events on each item
             RecipeListView.setOnItemClickListener(new OnItemClickListener()
                {
                         // argument position gives the index of item which is clicked
                        public void onItemClick(AdapterView<?> arg0, View v,int position, long arg3)
                        {
                            Intent i=new Intent(SecondScreenActivity.this, ThirdScreenActivity.class);
                            i.putExtra("position", position);
                            startActivity(i);

                             }
                });
    }

    void getRecipeNames()
    {
        RecipeList.add("Recipe1");
        RecipeList.add("Recipe2");
        RecipeList.add("Recipe3");
        RecipeList.add("Recipe4");
        RecipeList.add("Recipe5");
        RecipeList.add("Recipe6");
        RecipeList.add("Recipe7");
        RecipeList.add("Recipe8");
        RecipeList.add("Recipe9");
        RecipeList.add("Recipe10");



    }
}

これが私の新しいページのアクティビティです:

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

public class ThirdScreenActivity extends Activity {

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.screen2);

    TextView t = ((TextView)findViewById(R.id.textviewPosition));

    Intent intent = getIntent();
    String position = intent.getStringExtra("position");

    t.setText(position);        
}   

}

そしてscreen2は:

<?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"
android:background="#ffffff">

<TextView
    android:id="@+id/textviewPosition"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:textColor="#000000"
    android:textAppearance="?android:attr/textAppearanceLarge" />

</LinearLayout>

Eclipse または logcat でエラー メッセージが表示されません。クリックすると空白のページが表示されるだけです。助けてくれてありがとう

編集: (position) の代わりに (String.valueOf(position)) を試したところ、すべての行で null と表示されるようになりました。例えば。ThirdScreenActivity で:

TextView t = ((TextView)findViewById(R.id.textviewPosition));

    Intent intent = getIntent();
    String position = intent.getStringExtra("position");

    t.setText(String.valueOf(position));
4

3 に答える 3