gpt4 book ai didi

android - 两个 Android Fragment 可以使用相同的 ID 吗?

转载 作者:行者123 更新时间:2023-11-30 02:35:13 24 4
gpt4 key购买 nike

我想要两个或多个 fragment ,它们将被类似地处理。我可以在每个 fragment 中重复使用 ID 吗?

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"

<Fragment
android:id="@+id/fragment_1"
class="com.example.DoesSomethingToTitle"

<TextView android:id="@+id/title" />
</Fragment>


<Fragment
android:id="@+id/fragment_2"
class="com.example.DoesSomethingToTitle"

<TextView android:id="@id/title" /> <!-- same id -->
</Fragment>

</FrameLayout>

然后像这样使用它:

public class DoesSomethingToTitle {
private String titletext;

public DoesSomethingToTitle(String titletext) {
this.titletext = titletext;
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {

View v = inflater.inflate(R.layout.feed, container, false);
// find the title TextView and mutate it
((TextView) v.findViewById(R.id.title)).setText(titletext);
return v;
}
}

(我意识到对于这么简单的事情,我可以只在 XML 中指定标题字符串;我的实际用法更复杂。)

最佳答案

我可以在每个 Fragment 中重复使用 ID 吗?

是的,你可以。

关于android - 两个 Android Fragment 可以使用相同的 ID 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26683161/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com