我有这个活动布局,其中我有一个标题(RelativeLayout
),内容(FrameLayout
)和一个页脚(RelativeLayout)都在一个LinearLayout
(请参阅下面的附加屏幕截图):
问题是,有时当内容(实际上是 a 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>