Var course address =" http://icourse8.com/zujianhua_AndroidApp.html "; Const goes to download =" http://icourse8.com/zujianhua_AndroidApp.html ";Copy the code
Course Address Chapter 1 Course Overview
Chapter 2 home page frame construction
Chapter 3 network request component of App common module
Chapter 4 Image loading component of App public module
Chapter 5 homepage list development and testing
Chapter 6 QR code scanning component of App public module
Chapter 7 Video playback SDK module development
Chapter 8 Homepage MineFragment Development and testing
Chapter 9 Browse to see the big picture page development
Chapter 10 Social sharing component of App public module
Chapter 11 course details page development
Chapter 12 real-time push component of App public module
Chapter 13 project adaptation android6.0 permission system
Chapter 14 Youmeng multi-channel packaging and online Apk
Chapter 15 project process review and optimization
def longestCommonPrefix(self, strs):
if not strs: return ""
ss = list(map(set, zip(*strs)))
res = ""
for i, x in enumerate(ss):
x = list(x)
if len(x) > 1:
break
res = res + x[0]
return resCopy the code