In Android Studio, Tools -> Layout Inspector, what does a greyed out(subdued, dim) view in the View Tree mean? The layer still has VISIBLE
properties
I don't see any explanation in the docs, https://developer.android.com/studio/debug/layout-inspector and there isn't a tooltip when hovering the view.
You can download the .li
layout capture in question here
For context/reference, I am trying to figure out why the fragment isn't showing up in the id/content_container
, https://gitlab.com/gitlab-org/gitter/gitter-android-app/issues/108
The project is open source if you want to check out the code yourself, https://gitlab.com/gitlab-org/gitter/gitter-android-app
these nodes are boilerplate layout, which are essential for the framework.
that ContentFrameLayout
is the root-view with id android.R.id.content
,
which has R.layout.activity_main
inflated and it adds further nested nodes into there.
basicallyy it's name-space android.R
(in gray) vs. im.gitter.gitter.R
(in black).
nodes from android.R
might still turn black, when they have a visble layout inflated.