os dejo algo de mi código
index.java
Código Java:
Ver original
public class Index extends ActionBarActivity implements NavigationDrawerFragment.NavigationDrawerCallbacks { private NavigationDrawerFragment mNavigationDrawerFragment; private CharSequence mTitle; private ArrayList<Evento> event; private AdaptadorEventos adaptador; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.index); new LoadIconTask().execute(R.id.section_label); mNavigationDrawerFragment = (NavigationDrawerFragment)getSupportFragmentManager().findFragmentById(R.id.navigation_drawer); mTitle = getTitle(); mNavigationDrawerFragment.setUp(R.id.navigation_drawer, (DrawerLayout) findViewById(R.id.drawer_layout)); event=new ArrayList<Evento>(); event.add(new Evento(1,1,"aaa","aaa","aaa","aaa")); event.add(new Evento(2,2,"bbb","bbb","bbb","bbb")); adaptador=new AdaptadorEventos(this, event); listaEventos.setAdapter(adaptador); //Esta es la línea que me da fallo registerForContextMenu(listaEventos); }
AdaptadorEventos.java
Código Java:
Ver original
public class AdaptadorEventos extends ArrayAdapter<Evento>{ private ArrayList<Evento> evento; super(context, R.layout.activity_main, evento); this.context = context; this.evento = evento; } LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); TextView lblTitulo = (TextView)item.findViewById(R.id.lblB); lblTitulo.setText(evento.get(position).getIdBanda()); TextView lblSubtitulo = (TextView)item.findViewById(R.id.lblR); lblSubtitulo.setText(evento.get(position).getIdRecinto()); return (item); } }
Fragment_main.xml
Código XML:
Ver original
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context="es.plugme.MainActivity$PlaceholderFragment" android:background="#f3f3f3" > <TextView android:id="@+id/section_label" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hola" /> <ListView android:id="@+id/lstEventos" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hola" /> </RelativeLayout>
adaptador_eventos.xml
Código XML:
Ver original
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical"> <TextView android:id="@+id/lblB" android:layout_width="fill_parent" android:layout_height="wrap_content" android:textStyle="bold" android:textSize="20dp" android:layout_marginLeft="10dp"/> <TextView android:id="@+id/lblR" android:layout_width="fill_parent" android:layout_height="wrap_content" android:textStyle="normal" android:textSize="12dp" android:paddingTop="20dp" android:layout_marginLeft="10dp"/> </RelativeLayout>
En teoría no tengo nada más y por otros ejemplos que tengo y he probado así debería funcionar... pero no entiendo porque no :/