Hola,
Tengo una duda de principiante total:¿cómo podría hacer para pasar de este menú? a este otro:
Este el código:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/header"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:background="#000000"
>
<include layout="@layout/global_title_light" />
<LinearLayout android:id="@+id/myContent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginTop="47dip"
android:orientation="vertical"
>
<ListView android:id="@+id/myList"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/hola"
android:cacheColorHint="#000000"
android:choiceMode="singleChoice"
android:scrollbars="none"
/>
</LinearLayout>
</RelativeLayout>
Muchisísimas gracias!!!