我在代码中使用片段,所以我无法改变整个活动的背景颜色,请帮助我。
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/exercisetype_list"
android:name="de.skubware.opentraining.activity.create_workout.ExerciseTypeListFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
tools:context=".ExerciseTypeListActivity"
tools:layout="@layout/list_content"
/>
以下是我们用于片段的活动,并且已经设置了背景list_content,但仍未使用片段更改整个布局的背景颜色 list_content活动
<LinearLayout android:id="@+id/progressContainer"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"
android:gravity="center"
android:background="#000000" >
<ProgressBar style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#FFFFFF"/>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="Loading"
android:paddingTop="4dip"
android:singleLine="true"
android:textColor="#FFFFFF"/>
</LinearLayout>
<FrameLayout android:id="@+id/listContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000">
<ListView android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:drawSelectorOnTop="false"
android:background="#000000"/>
<TextView android:id="@+id/android.R.internalEmpty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:textColor="#FFFFFF"
android:textAppearance="?android:attr/textAppearanceLarge" />
</FrameLayout>
答案 0 :(得分:0)
您可以设置布局的背景 - &gt; list_Contnet,因为这是占用所有空间的布局。