1

我在我的应用程序中使用滑动菜单

在此处输入图像描述

单击设置图标后,我得到以下结果

在此处输入图像描述

第一个布局中的内容是换行的,而不是我想隐藏那部分视图

xml文件

 <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:background="@drawable/menu_bg"
tools:context=".PrincipalActivity" >

<include layout="@layout/actionbar_menu" android:id="@+id/actionBarMenu"/>
 //listview for displaying menu
<ListView
    android:id="@+id/listMenu"
    android:layout_below="@+id/actionBarMenu"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:divider="#282828"
    android:dividerHeight="1dip"
    android:background="#3F3F3F"
    android:fadingEdge="none"
    android:listSelector="@drawable/list_selector">

</ListView>

 //this is main layout which is visible first time when application starts
<RelativeLayout
    android:id="@+id/layoutToMove"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_below="@+id/actionBar"
    android:background="#282828">

    <include layout="@layout/actionbar_layout" android:id="@+id/actionBar"/>

    <ImageButton
        android:id="@+id/menuButton"
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:layout_alignBottom="@+id/actionBar"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:onClick="openCloseMenu"
        android:src="@drawable/menu"
        android:background="@android:color/transparent" />
     <TextView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="asdkjasdksajdkasjdkasjdkasdddddddddddddddddddddddddddddd"
        android:textColor="#fff"
        android:layout_centerVertical="true"/>
    <Button
        android:id="@+id/separator"
        android:layout_width="1dp"
        android:layout_height="50dp"
        android:layout_toRightOf="@+id/menuButton"
        android:background="@drawable/custom_button_black" />

</RelativeLayout>

任何形式的帮助将不胜感激

4

1 回答 1

0

您应该考虑使用 jfeinstein10 的SlidingMenu。它非常好,被许多流行的 Android 应用程序广泛使用,例如 Foursquare Rdio、Falcon Pro 等

于 2013-03-07T22:52:59.883 回答