我正在尝试在没有ActionBar
的情况下实现导航抽屉。
有一个小布局,里面有一个按钮。 单击该按钮后,导航抽屉将打开。导航抽屉位于按钮下方。 我怎么能在android ???
中实现这个答案 0 :(得分:0)
像这样定义你的xml,你就完成了
<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">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="100dp" // static height for view or keep it dimen.xml
android:background="#21ef70"
android:gravity="bottom"
android:orientation="horizontal">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click"
android:id="@+id/button2" />
</LinearLayout>
</LinearLayout>
<!-- Listview to display navigation menu -->
<ListView
android:id="@+id/list_slidermenu"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:layout_marginTop="100dp" // same margin as of layout
android:choiceMode="singleChoice"
android:dividerHeight="1dp" />
</android.support.v4.widget.DrawerLayout>
答案 1 :(得分:0)
要隐藏操作栏,只需执行以下操作:
let response: Response = Mapper<Response>().map(responseObject)!
for item in response.data! {
let dataModel: Data = item
println(dataModel.name)
}