LinearLayout に ScrollView があり、上部にヘッダー LinearLayout があります。メインの LinearLayout に背景を与えました。ScrollView の背景を保持すると、すべて正常に表示されます。しかし、多くのコンテンツを追加すると、ScrollView の背景が伸びます。だから私は ScrollView を透明に保ちたい。
しかし、背景属性を削除するか、android:background="@android:color/transparent" を試すと、ScrollView 内のコンテンツが消えます。私が見ることができるのは、外側の LinearLayouts からのヘッダーと背景だけです。
これは私が私のビューを望む方法です:
<Linear Layout with background image>
<Header Linear Layout>
</Header Linear Layout>
<ScrollView with no background>
<Layouts in Scroll View>
</ScrollView>
コードは次のとおりです。
<?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:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bg"
android:orientation="vertical" >
<include layout="@layout/topbar" />
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
style="@style/Labels"
android:text="@string/posts_add_postcontent" />
<EditText
android:id="@+id/postsAddContent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/posts_add_postcontent_h"
android:inputType="textMultiLine"
android:maxLength="3000"
android:minLines="3" />
</LinearLayout>
</ScrollView>
</LinearLayout>
注: ヘッダー LinearLayout は、別のファイルを介して含まれています。
<?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:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/topbar"
android:layout_width="fill_parent"
android:layout_height="30dip"
android:background="@layout/bgtop_repeat"
android:orientation="horizontal"
android:paddingTop="2dip" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/app_name"
android:src="@drawable/cornerlogo" />
<Button
android:id="@+id/menubuton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:background="@drawable/menubutton" />
</RelativeLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@layout/headshadow_repeat"
android:orientation="horizontal" />
</LinearLayout>
前もって感謝します :)