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.