您好,登錄后才能下訂單哦!
要在Fragment中復(fù)用TextView,可以在Fragment的布局文件中定義一個TextView,并在Fragment的代碼中找到這個TextView并設(shè)置其文本內(nèi)容。以下是一個示例:
<TextView
android:id="@+id/text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView in Fragment" />
public class MyFragment extends Fragment {
private TextView mTextView;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_layout, container, false);
mTextView = view.findViewById(R.id.text_view);
return view;
}
public void setText(String text) {
mTextView.setText(text);
}
}
在Activity中使用這個Fragment,并設(shè)置TextView的文本內(nèi)容:
MyFragment fragment1 = new MyFragment();
MyFragment fragment2 = new MyFragment();
getSupportFragmentManager().beginTransaction().add(R.id.fragment_container, fragment1).commit();
getSupportFragmentManager().beginTransaction().add(R.id.fragment_container, fragment2).commit();
fragment1.setText("Fragment 1");
fragment2.setText("Fragment 2");
這樣就可以在不同的Fragment中復(fù)用同一個TextView,并設(shè)置不同的文本內(nèi)容。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。