显示帐户列表的常用方法

时间:2016-05-03 21:10:50

标签: android

我需要显示AccountManager.getAccountsByType()返回的帐户列表,以便用户可以选择一个帐户,如果有多个帐户可用。

我相信这可以使用ListView来实现,但这是最好的方法,还是我应该通过另一条道路?也许是某种对话?

由于

2 个答案:

答案 0 :(得分:1)

听起来像是https://ux.stackexchange.com的问题!

但是,是的,警报对话似乎是一个不错的选择。官方文档描述了如何执行此操作:  https://developer.android.com/guide/topics/ui/dialogs.html#AddingAList

答案 1 :(得分:0)

AccountManager已经有用于显示帐户选择器的活动。您可以使用AccountManager.newChooseAccountIntent()调用它。

检查文档:newChooseAccountIntent | Activity | Android developers