java 获取片段中的活动数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 获取片段中的活动数据相关的知识,希望对你有一定的参考价值。

<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:orientation="horizontal"
        android:background="@color/red"
        android:id="@+id/titleBar"
        >
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/textTitleBar"
            android:gravity="center"
            android:paddingTop="20dp"
            android:textColor="@color/white"
            />
    </LinearLayout>
	    public void initialSetup(){
        TextView titlelBarTextView = getActivity().findViewById(R.id.textTitleBar);
        titlelBarTextView.setText(" Chat ");
    }

以上是关于java 获取片段中的活动数据的主要内容,如果未能解决你的问题,请参考以下文章

无法从片段中的 SQLite 获取数据

如何更改片段中的主要活动变量

如何从“活动”中的“编辑”文本中获取值并将其用于片段?

从片段调用活动方法

如何从片段获取数据到另一个活动? (不是容器活动)[重复]

如何从片段获取数据到活动? [复制]