我正在写一本日记应用程序。
首先,我将展示代码并清楚地解释问题......
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
<android.support.v4.view.ViewPager
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
>
</android.support.v4.view.ViewPager>
<SlidingDrawer
android:id="@+id/slidingDrawer2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:content="@+id/content2"
android:handle="@+id/handle2"
>
<Button
android:id="@+id/handle2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="show More" />
<LinearLayout
android:id="@+id/content2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/save"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="okatac" />
<Button
android:id="@+id/imageinac"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="image" />
<Button
android:id="@+id/locinac"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="location" />
<Button
android:id="@+id/selectedate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="date" />
</LinearLayout>
</SlidingDrawer>
如果你看到上面的xml文件..
1.Viewpager包含看起来像日记的片段
2.无论何时我移动viewpager,日期都会改变
3.每当我点击滑动抽屉中的保存按钮时,数据应保存在数据库中
但问题是,如果我使用滑动抽屉,它占据整个屏幕,以便我无法看到由日记组成的viewpager片段。
我没有到达我犯错误的地方
希望我已经提供了所需的信息