首页 > 精选知识 > 正文

fragment 生命周期(今日时讯fragment生命周期)

来源:精选知识2024-08-22 06:15:26
导读 您好,今日明帅来为大家解答以上的问题。fragment 生命周期,今日时讯fragment生命周期相信很多小伙伴还不知道,现在让我们一起来看看吧!1...

您好,今日明帅来为大家解答以上的问题。fragment 生命周期,今日时讯fragment生命周期相信很多小伙伴还不知道,现在让我们一起来看看吧!

1、测试代码[java] view plaincopypackage com.goso.testapp; import android.app.Activity; import android.app.ListFragment; import android.os.Bundle; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.ListView; /** * Demonstration of using ListFragment to show a list of items * from a canned array. */ public class FragmentListArray extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Log.e("HJJ", "Activity &&&& onCreate..."); // Create the list fragment and add it as our sole content. if (getFragmentManager().findFragmentById(android.R.id.content) == null) { ArrayListFragment list = new ArrayListFragment(); getFragmentManager().beginTransaction().add(android.R.id.content, list).commit(); } }。

本文就为大家分享到这里,希望小伙伴们会喜欢。

关键词:
版权声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

猜你喜欢

最新文章