我正在开发一个Android应用程序,其中我想在第一次应用程序启动时创建覆盖屏幕。我在app启动时使用片段作为主屏幕。 我想手动而不是展示库..
答案 0 :(得分:1)
如果我关注的问题不是,您应该使用RelativeLayout
作为叠加层。并根据您的需要设置可见性。
<RelativeLayout
android:width="match_parent"
android:height="match_parent">
<LinearLayout>
// your main layout goes here
<LinearLayout>
<RelativeLayout
android:id="@+id/overlay"
android:width="match_parent"
android:height="match_parent">
</RelativeLayout>
</RelativeLayout>
答案 1 :(得分:1)
用户其中一个库:
showcaseView的示例:
u8