Google has released its Android API in an interactive form, which is friendly to human users.

http://developer.android.com/reference/classes.html

Is there any programmatic way to change the API level (select) and get the html contents (response of the selecting) corresponding to the API level?

有帮助吗?

解决方案

I realize that Google writes all the contents within the page and use css 'id' or 'class' to distinguish program elements of different API levels.

I solve this problem by using html parser, such as beautiful soup or lxml, to look for (select) specific css tags, that work pretty well.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top