异步加载图片
```
1 from kivy.app import App
2 from kivy.uix.gridlayout import GridLayout
3 from kivy.uix.image import Image, AsyncImage
4
5
6 class ImageBoxLayout(GridLayout):
7 ...
8
9
10 class TestApp(App):
11 def build(self):
12 self.title = "测试标题"
13 return ImageBoxLayout()
14
15
16 if name == 'main':