我有这个活动布局,我在RelativeLayout
内有一个标题(FrameLayout
),内容(LinearLayout
)和页脚(RelativeLayout)(请参阅随附的屏幕截图)下面):
问题在于,有时当内容(实际上是Fragment
)足够大时,它会被页脚剪切(例如,在附加的图像中,可以看到某些按钮被剪裁)。我已经尝试将页脚布局的背景设置为透明(通过xml和通过代码),调用FrameLayout.bringToFront()
方法但似乎没有任何效果!
下面粘贴的是我正在使用的布局xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/layoutMain"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#000000"
android:orientation="vertical"
tools:context=".BatwaSelectLanguage" >
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layoutHeader"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="top" >
<ImageView
android:id="@+id/imBatwa"
android:layout_width="209dp"
android:layout_height="48dp"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="30dp"
android:layout_marginTop="20dp"
android:src="@drawable/batwa" />
<Spinner
android:id="@+id/spLang"
android:layout_width="140dp"
android:layout_height="60dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="30dp"
android:layout_marginTop="20dp"
android:background="#000000"
android:prompt="@string/english" />
<TextView
android:id="@+id/tvSelectLanguage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginRight="20dp"
android:layout_marginTop="20dp"
android:layout_toLeftOf="@+id/spLang"
android:drawablePadding="30dp"
android:drawableRight="@drawable/line"
android:gravity="center"
android:text="@string/select_your_language"
android:textColor="@color/tvWhite"
android:textSize="@dimen/tvSizeSelectLang" />
</RelativeLayout>
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" >
</FrameLayout>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layoutFooter"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="bottom" >
<ImageView
android:id="@+id/imNFC"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginBottom="0dp"
android:layout_marginLeft="30dp"
android:contentDescription="@string/nfcimg"
android:src="@drawable/nfc" />
<ImageView
android:id="@+id/imNadra"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginBottom="00dp"
android:layout_marginRight="10dp"
android:contentDescription="@string/nadra"
android:src="@drawable/nadralogo" />
</RelativeLayout>
</LinearLayout>