溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

TextView在Fragment中如何復(fù)用

發(fā)布時間:2024-08-21 11:03:18 來源:億速云 閱讀:93 作者:小樊 欄目:移動開發(fā)

要在Fragment中復(fù)用TextView,可以在Fragment的布局文件中定義一個TextView,并在Fragment的代碼中找到這個TextView并設(shè)置其文本內(nèi)容。以下是一個示例:

  1. 在Fragment的布局文件中定義一個TextView:
<TextView
    android:id="@+id/text_view"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="TextView in Fragment" />
  1. 在Fragment的代碼中找到這個TextView并設(shè)置其文本內(nèi)容:
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)容。

向AI問一下細(xì)節(jié)

免責(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)容。

AI