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.
我在第一个活动中有一个列表视图,我想在点击时转到第二个活动,但我想实现第一个视图是这样的,这意味着第二个活动的某些部分在第一个活动中可见。我怎样才能实现。
在这种情况下,不要创建两个单独的活动。您可以做的是,将第二个活动的 xml 布局写入第一个活动的 xml 文件中,但将其可见性保持为“ GONE”。单击调用第二个活动的按钮时,只需将此布局的可见性设置为“ VISIBLE”。所以你会得到想要的输出。
GONE
VISIBLE
将第二个活动中布局的背景颜色设置为透明:
android:background="@android:color/transparent"