答案 0 :(得分:2)
要创建此弹出窗口,您需要执行此操作。
1) create an activity as like your displaying popup
2) add below section to the manifest file
<activity android:name=".popupActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Dialog">//====> this makes the activity to display like pop up when call make to this activity
当您通过意图调用此活动时,它看起来就像您需要的那样..
答案 1 :(得分:0)
请使用自定义对话框并在其中添加一些滚动视图和线性布局。然后将实际文本放入其中。
答案 2 :(得分:0)
您可以将此popup library用于自定义布局。在您的活动中使用一行代码非常简单。
Pop.on(this).with()
.title(R.string.title) //you can skip if you don't need title
.layout(R.layout.license).show();