Android弹出框类似于谷歌许可?

时间:2012-07-24 04:31:43

标签: android

嗯,看看android popup的方式是带有滚动的许可证的文本,无论如何要复制它?屏幕如下enter image description here

3 个答案:

答案 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();