34

我尝试更改片段的背景颜色,但出现了一个小问题。

public class MainActivity extends FragmentActivity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
}

因此,上面显示的是我的主类的代码,它为片段调用 XML 文件。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <fragment
        android:id="@+id/fragment1"
        android:name="com.northreal.practice.FirstFragment"
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="#CBA" />

</LinearLayout>

以上是主类(MainActivity)调用的main.xml布局。

public class FirstFragment extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup parent,
            Bundle savedInstanceState) {
        return inflater.inflate(R.layout.main, parent, false);
    }
}

上面带有片段的 XML 文件调用了这个类。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
     >

    <TextView
        android:id="@+id/tv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="BLAHHHH"
        android:layout_gravity="center_vertical" />

</LinearLayout>

上面的这个布局被 FirstFragment 类夸大了

那么,为什么这实际上并没有改变我的片段背景的颜色呢?

4

5 回答 5

50

片段不从 View 继承,因此没有设置背景方法。

任何简单的解决方法就是抓住片段的根视图并设置它的背景

fragment.getView().setBackgroundColor(Color.WHITE);
于 2013-04-11T05:40:38.933 回答
10

这不起作用的原因是因为片段被视为类似于活动。它是一个容器,是主要活动的子活动,用于显示其他项目。

您需要将 android:background="#CBA" 放在包含 TextView 而不是片段本身的实际布局中。像这样:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#CBA"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/tv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:text="BLAHHHH" />
</LinearLayout>
于 2012-07-27T16:46:35.223 回答
4

获取片段对象,如:

Fragment fragment = (Fragment) getFragmentManager().findFragmentById(R.id.fragmentId);

改变它的背景,如:

fragment.getView().setBackgroundColor(Color.WHITE);
于 2018-02-13T14:22:00.763 回答
3

在 AndroidX 中,您可以使用 FragmentContainerView 而不是 Fragment 来设置背景:

<androidx.fragment.app.FragmentContainerView
    ...
    android:background="#FFFFFF"/>
于 2020-05-15T09:25:13.360 回答
0

我遇到了同样的问题,但我的要求是设置或更改片段的背景可绘制图像。正如亚当回答的那样,这种方法是正确的,我想展示从片段到活动的联系。

最佳做法是使用名为“连接器”(或任何名称)的接口。然后从您的片段中:

Connector connector = (Connector) getActivity();
connector.setIt(this);

然后在您的活动中实现“连接器”接口并拥有该方法。

@Override
public void setIt(Fragment fragment){
    FirstFragment firstFrag = (FirstFragment) getSupportFragmentManager().findFragmentByTag("first");
    firstFrag.getView().setBackgroundDrawable(getResources().getDrawable(R.drawable.app_background));
    //or for color set
    firstFrag.getView().setBackgroundColor(Color.WHITE);
}
于 2017-04-11T18:29:29.930 回答