0

メソッドのようにSecondActivity設定された単純なレイアウトのみがあります。ContentViewonCreate()

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

そして、次のactivity_second.xmlとおりです。

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".SecondActivity" />

しかしdumpsys、トップアクティビティをダンプするために使用すると、出力に不明なFragment(「ReportFragment」) がリストされます。

$ adb shell dumpsys activity top
TASK xxx.lifecycleapplication id=4
  ACTIVITY xxx.lifecycleapplication/.SecondActivity 538274ac pid=1519
    Local Activity 5368915c State:
      mResumed=true mStopped=false mFinished=false
      mLoadersStarted=true
      mChangingConfigurations=false
      mCurrentConfig={1.0 310mcc270mnc en_US sw384dp w384dp h567dp nrml port finger qwerty/v/v dpad/v s.5}
    Active Fragments in 536891f0:
      #0: ReportFragment{5369f99c #0 androidx.lifecycle.LifecycleDispatcher.report_fragment_tag}
        mFragmentId=#0 mContainerId=#0 mTag=androidx.lifecycle.LifecycleDispatcher.report_fragment_tag
        mState=5 mIndex=0 mWho=android:fragment:0 mBackStackNesting=0
        mAdded=true mRemoving=false mResumed=true mFromLayout=false mInLayout=false
        mHidden=false mDetached=false mMenuVisible=true mHasMenu=false
        mRetainInstance=false mRetaining=false mUserVisibleHint=true
        mFragmentManager=FragmentManager{536891f0 in SecondActivity{5368915c}}
        mActivity=xxx.lifecycleapplication.SecondActivity@5368915c
    Added Fragments:
      #0: ReportFragment{5369f99c #0 androidx.lifecycle.LifecycleDispatcher.report_fragment_tag}
    FragmentManager misc state:
      mCurState=5 mStateSaved=false mDestroyed=false
    Local FragmentActivity 5368915c State:
      mCreated=true mResumed=true mStopped=false    FragmentManager misc state:
      mHost=androidx.fragment.app.FragmentActivity$HostCallbacks@5368b814
      mContainer=androidx.fragment.app.FragmentActivity$HostCallbacks@5368b814
      mCurState=4 mStateSaved=false mStopped=false mDestroyed=false

ReportFragment何も使用していないのに、「アクティブなフラグメント」と「追加されたフラグメント」に出力が表示されるのはなぜFragmentですか?

4

1 に答える 1

0

この行が手がかりです:

mTag=androidx.lifecycle.LifecycleDispatcher.report_fragment_tag

は、アプリで開始されたアクティビティがあるかどうかを追跡するためにおよびReportFragmentによって使用される実装の詳細です。API 29 より前は、フレームワーク Fragment を使用して、すべてのアクティビティ (または通常のサブクラス) でこれを追跡します。lifecycle-processProcessLifecycleOwnerAppCompatActivityActivity

于 2020-03-26T04:14:17.427 に答える