Question:
Date: 09-09-2018 02:48:52
(In Spanish)
Esta segunda aplicación tiene un menú horizontal, a uno de estos elementos del menú, he añadido botones, uno de estos botones llama al Activity que he incorporado, el problema es que cuando se muestra, lo hace fuera ocultando lo menús.
No sé si el programa puede estar en los xml, os dejo el código por si aquí donde está el problema y me podéis ayudar
activity_main.xml
apuntes.xml
Cuando se lanza una segunda Activity oculta los menús[Unanswered]
Hola, he estado probando el código de una aplicación donde se muestra un Activity, cuando he visto que funciona bien, la quiero incorporar a otra aplicación,Esta segunda aplicación tiene un menú horizontal, a uno de estos elementos del menú, he añadido botones, uno de estos botones llama al Activity que he incorporado, el problema es que cuando se muestra, lo hace fuera ocultando lo menús.
No sé si el programa puede estar en los xml, os dejo el código por si aquí donde está el problema y me podéis ayudar
activity_main.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context="com.SoCu.CirDocu.MainActivity"> <android.support.v4.widget.DrawerLayout android:id="@+id/drawer_layout" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true" tools:openDrawer="start"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?android:actionBarSize" android:background="@color/colorPrimary" android:elevation="4dp" app:layout_collapseMode="pin" app:popupTheme="@style/AppTheme.FondoMenu" app:theme="@style/ThemeOverlay.AppCompat.Dark" app:titleTextColor="@android:color/white"> <TextView android:id="@+id/texto_toolbar" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_gravity="clip_vertical" android:text= "@string/titulo_app" android:textSize="20sp" /> </android.support.v7.widget.Toolbar> <com.SoCu.Docu_Adif.custom_views.HorizontalScrollMenuView android:id="@+id/horizontal_menu" android:layout_width="match_parent" android:layout_height="wrap_content" app:backgroundMenuColor="#0099cc" app:backgroundNotifications="@color/colorAccent" app:icon_height="30dp" app:icon_width="30dp" app:item_backgroundColor="@color/colorPrimary" app:item_colorSelected="#ffffff" app:item_textColor="#ffffff" /> <android.support.v4.view.ViewPager android:id="@+id/pager" android:layout_width="match_parent" android:layout_height="match_parent" /> <TextView android:id="@+id/ver_name" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout> <ExpandableListView android:id="@+id/explist_slidermenu" android:layout_width="240dp" android:layout_height="match_parent" android:layout_gravity="start" android:background="#FFFFFF" android:choiceMode="singleChoice" android:divider="@color/Gris1" android:dividerHeight="0.5dp" android:listSelector="#bfbfbf" > </ExpandableListView> </android.support.v4.widget.DrawerLayout> <FrameLayout android:id="@+id/frame_container" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" /> </LinearLayout>
apuntes.xml
<?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:minHeight="180dp" tools:context="com.SoCu.CirDocu.Apuntes" tools:layout_editor_absoluteY="25dp"> <EditText android:id="@+id/txt_nombre" android:layout_width="300dp" android:layout_height="wrap_content" android:layout_marginEnd="35dp" android:layout_marginStart="35dp" android:layout_marginTop="176dp" android:ems="10" android:hint="@string/txt_nombre" android:inputType="textPersonName" app:layout_constraintBottom_toTopOf="@+id/txt_contenido" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <EditText android:id="@+id/txt_contenido" android:layout_width="360dp" android:layout_height="320dp" android:layout_marginEnd="24dp" android:layout_marginStart="24dp" android:layout_marginTop="8dp" android:background="#1634F7" android:ems="10" android:gravity="top" android:inputType="textMultiLine" android:textColor="#FFFFFF" app:layout_constraintBottom_toTopOf="@+id/button" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/txt_nombre" /> <Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginEnd="16dp" android:layout_marginStart="32dp" android:onClick="Guardar" android:text="@string/boton_Guardar" android:textSize="18sp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toStartOf="@+id/button2" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/txt_contenido" /> <Button android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="8dp" android:layout_marginEnd="32dp" android:layout_marginStart="16dp" android:layout_marginTop="16dp" android:onClick="Consultar" android:text="@string/boton_Consultar" android:textSize="18sp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="1.0" app:layout_constraintStart_toEndOf="@+id/button" app:layout_constraintTop_toBottomOf="@+id/txt_contenido" /> </android.support.constraint.ConstraintLayout>Votes: 0 - Answers: 0 - Views: 3 Share on: Google Facebook Twitter LinkedIn Link
Answers:
No replies for this question, be the first to answer.
To actively participate in the community first must authenticate, enter the system.Sign In