我现在弹出的效果可以出来了,只是在初始化(Activity)的时候不行,因为只能调用一个布局文件,之前自学的时候都是一个布局文件,现在两个布局文件不知道怎么调用了,求方法? 简述: 主界面是一个布局文件‘、左侧弹出菜单是一个布局文件,怎么处理才可以正常运行呢? |
|
10分 |
include啊
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/drawer_layout" android:layout_width="match_parent" android:layout_height="match_parent" > <FrameLayout android:id="@+id/frame_container" android:layout_width="match_parent" android:layout_height="match_parent" /> <include android:id="@+id/v_sider" layout="@layout/activity_sidemenu" /> </android.support.v4.widget.DrawerLayout> |
10分 |
fragment?
|
10分 |
楼主说的是抽屉效果吧?网上你搜一下,很多的
|
10分 |
用 Fragment 应该会比较简单一点
|
像这种最新的布局方式,一般是在哪发现或者看到的呢? |
|
http://www.360doc.com/content/13/0705/10/7471983_297781185.shtml
这上面有,你可以去看看 |
|
github |
|
侧拉的效果有SlidingMenu。。。然后也可以通过布局的方式。有一个DrawLayout布局
|
|
解决了,谢谢楼上各位。
|