我正在尝试以全屏加载图像并放置两个按钮栏(一个在顶部,一个在底部)。但是当我测试应用程序时,顶部栏被整个图像隐藏,而底部栏正确显示。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:id="@+id/relshare"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:background="#60000000" >
<Button
android:id="@+id/btnBack"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/setaswallpaper"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="@drawable/back_button"
android:gravity="right" />
<Button
android:id="@+id/setaswallpaper"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="@drawable/set_wallpaper"
android:gravity="right"
android:textSize="25sp" />
<Button
android:id="@+id/bshare"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/setaswallpaper"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="@drawable/share"
android:gravity="right" />
</RelativeLayout>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fadingEdgeLength="10dp"
android:filterTouchesWhenObscured="true"
android:focusableInTouchMode="false"
android:scrollbarDefaultDelayBeforeFade="100000" />
<ProgressBar
android:id="@+id/pb"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />
<RelativeLayout
android:id="@+id/relshare2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="#60000000" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:orientation="horizontal" >
<Button
android:id="@+id/bfavorite"
android:layout_width="40dp"
android:layout_height="40dp"
android:background="@drawable/favorite1"
android:gravity="left"
android:padding="10dp"
android:textSize="25sp" />
<TextView
android:layout_width="40dp"
android:layout_height="40dp" />
<Button
android:id="@+id/download"
android:layout_width="40dp"
android:layout_height="40dp"
android:background="@drawable/download"
android:gravity="right"
android:padding="10dp"
android:textSize="25sp" />
</LinearLayout>
<Button
android:id="@+id/info"
style="?android:attr/buttonStyleSmall"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_alignParentRight="true"
android:layout_centerHorizontal="true"
android:background="@drawable/info" />
<Button
android:id="@+id/reportissue"
style="?android:attr/buttonStyleSmall"
android:layout_width="50dp"
android:layout_height="40dp"
android:layout_alignParentLeft="true"
android:background="@drawable/report_issue"
android:text="" />
</RelativeLayout>
</RelativeLayout>
请帮我解决这个错误
答案 0 :(得分:1)
在你的xml中试试这个吗?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fadingEdgeLength="10dp"
android:filterTouchesWhenObscured="true"
android:focusableInTouchMode="false"
android:scrollbarDefaultDelayBeforeFade="100000" />
<ProgressBar
android:id="@+id/pb"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />
<RelativeLayout
android:id="@+id/relshare"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:background="#60000000" >
<Button
android:id="@+id/btnBack"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/setaswallpaper"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="@drawable/back_button"
android:gravity="right" />
<Button
android:id="@+id/setaswallpaper"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="@drawable/set_wallpaper"
android:gravity="right"
android:textSize="25sp" />
<Button
android:id="@+id/bshare"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/setaswallpaper"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="@drawable/share"
android:gravity="right" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/relshare2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="#60000000" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:orientation="horizontal" >
<Button
android:id="@+id/bfavorite"
android:layout_width="40dp"
android:layout_height="40dp"
android:background="@drawable/favorite1"
android:gravity="left"
android:padding="10dp"
android:textSize="25sp" />
<TextView
android:layout_width="40dp"
android:layout_height="40dp" />
<Button
android:id="@+id/download"
android:layout_width="40dp"
android:layout_height="40dp"
android:background="@drawable/download"
android:gravity="right"
android:padding="10dp"
android:textSize="25sp" />
</LinearLayout>
<Button
android:id="@+id/info"
style="?android:attr/buttonStyleSmall"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_alignParentRight="true"
android:layout_centerHorizontal="true"
android:background="@drawable/info" />
<Button
android:id="@+id/reportissue"
style="?android:attr/buttonStyleSmall"
android:layout_width="50dp"
android:layout_height="40dp"
android:layout_alignParentLeft="true"
android:background="@drawable/report_issue"
android:text="" />
</RelativeLayout>
</RelativeLayout>
重新排序XML总是有助于解决这个问题。
答案 1 :(得分:0)
将以下属性添加到ViewPager。
android:layout_below="@id/relshare"
android:layout_above="@id/relshare2"
当然,您必须将relshare2声明移到ViewPager上方。