Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an ExpandableList and when I tap on a child I can see informations on that child in a new layout. I added also an activity to search inside the application, but if I tap on an item of the ListView I can see the same layout of the child but without the informations about what I've clicked.

This is the Details activity:

package it.caronte.bar;


import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.widget.ImageView;
import android.widget.TextView;

public class Details extends Activity
{
    @Override
    protected void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);
        setContentView(R.layout.last_layout);

        final Intent intent = getIntent();
        if (intent.hasExtra("selectedChild"))
        {
            final Child selectedChild = (Child) intent.getSerializableExtra("selectedChild");
            if (selectedChild != null)
            {
                ((TextView) findViewById(R.id.Title)).setText(selectedChild.getName());
                ((ImageView) findViewById(R.id.imageView1)).setImageResource(getResources().getIdentifier(selectedChild.getImage(),"drawable", "it.caronte.bar"));
            }
        }
    }

And this is the listener to my ListView:

package it.caronte.bar;

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


public class Search extends Activity{

private ListView list;

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

    list = (ListView) findViewById(R.id.listView1);
    aggiornaItems(Ingredients.TUTTI_GLI_INGREDIENTI);
    aggiornaName(Ingredients.TUTTI_GLI_INGREDIENTI);

    list.setClickable(true);
    list.setOnItemClickListener(new AdapterView.OnItemClickListener() {  
           public void onItemClick(AdapterView<?> parent, View view, int position, long id) {  

               Intent intent = new Intent(Search.this,Details.class);
               startActivity(intent);
                }
              });

I know I'm making a mistake but I don't know where. All that I can see, when I tap on listview, is the last_layout but with TextView and my icon inside.

share|improve this question
I'm sorry but I don't understand what you are asking. When you click your expandable list, it does not inflate to its appropriate size? – AedonEtLIRA Jul 7 '11 at 14:45
No, when I click on a child of my ExpandableList it's all ok because I can see all informations on last_layout. If I click on an item of ListView, of my Search activity, I can't see the same things on last_layout. As you can see, on the listener of ListView, I put an intent for Details activity. Part of my project is here so I don't insert long codes: stackoverflow.com/questions/5838122/… – Carontes Jul 7 '11 at 14:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.