Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个小问题,我DialogFragment.为我的应用程序编写了一个自定义的。
DialogFragment.
在这个片段中,我有一个按钮,它必须开始显示自定义视图,这些视图被膨胀到我的应用程序的根框架布局。
你能告诉我我该怎么做吗?
如果我的理解正确,您只想在按下按钮时显示您的视图。 因此,您需要在android:visibility此处使用属性并使用其中一个GONE或INVISIBLE值。
android:visibility
GONE
INVISIBLE
然后当按下按钮时,检索自定义视图的实例,然后将值设置为VISIBLE使用该setVisibility()方法。
VISIBLE
setVisibility()