从片段/活动中设置活页夹TextView中的文本,可以通过以下步骤实现:
<TextView
android:id="@+id/myTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
onCreateView
方法中进行如下操作:@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_layout, container, false);
TextView textView = view.findViewById(R.id.myTextView);
textView.setText("这是活页夹TextView中的文本");
return view;
}
onCreate
方法中进行如下操作:@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_layout);
TextView textView = findViewById(R.id.myTextView);
textView.setText("这是活页夹TextView中的文本");
}
通过以上步骤,就可以从片段/活动中设置活页夹TextView中的文本。这样做的好处是可以根据需要在不同的片段/活动中动态地设置TextView的文本内容,以实现更灵活的界面展示。
推荐的腾讯云相关产品:腾讯云移动推送(https://cloud.tencent.com/product/umeng_push)、腾讯云移动直播(https://cloud.tencent.com/product/mlvb)、腾讯云云服务器(https://cloud.tencent.com/product/cvm)等。
领取专属 10元无门槛券
手把手带您无忧上云