gpt4 book ai didi

Android:如何获取 fragment 的 View

转载 作者:太空宇宙 更新时间:2023-11-03 12:10:29 24 4
gpt4 key购买 nike

在类里面,我以编程方式添加 fragment 。

这个 Fragment 包含一个 Button,我希望它有一个 onClick 实现。

这是我的类(class):

public class ShareProduct extends SherlockFragmentActivity {

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.share_product);

FragmentManager fragmentManager = getSupportFragmentManager();
final FragmentTransaction fragmentTransaction = fragmentManager
.beginTransaction();

ProductFragment1 fragment = new ProductFragment1();
fragmentTransaction.add(R.id.share_product_parent, fragment);
fragmentTransaction.commit();

Button done_button = (Button) fragment.getView().findViewById(
R.id.done_product_1);
done_button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {

ProductFragment2 fragment = new ProductFragment2();
fragmentTransaction
.replace(R.id.share_product_parent, fragment);
fragmentTransaction.commit();
}
});
}
}

我的 ProductFragment1 类是:

public class ProductFragment1 extends SherlockFragment {

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}

public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater
.inflate(R.layout.share_product_1, container, false);
return view;
}
}

我的主类使用的布局是:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/share_product_parent"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:gravity="right|center_vertical"
android:orientation="horizontal" >

</RelativeLayout>

我的 ProductFragment1 使用的布局是:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:orientation="vertical" >

<TextView
android:id="@+id/tv1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="25dp" />

<EditText
android:id="@+id/et1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/tv1"
android:textSize="25dp" />

<Button
android:id="@+id/done_product_1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/et1"
android:text="Done" />

</RelativeLayout>

问题是:

我在主类的这一行收到 NullPointerException:

Button done_button = (Button) fragment.getView().findViewById(R.id.done_product_1);
done_button.setOnClickListener ....

当我在 fragment 上搜索 getView() 返回的内容时。我发现它从 onCreateView();

返回 View

我检查过它不会返回 null。

谢谢

最佳答案

你走错路了。您得到 NPE 因为 Fragments View 尚未创建。 FragmentsActivities 一样也有生命周期。

您应该做的是在您的 Fragments onViewCreated() 方法中分配 OnClickListener。从那里...您应该创建一个回调并通知您的主机 Activity 该事件。

关于Android:如何获取 fragment 的 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12621960/

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