-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathloadlayout2.lua
616 lines (565 loc) · 15.1 KB
/
loadlayout2.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
local require = require
local table = require "table"
local _G = _G
local insert = table.insert
local new = luajava.new
local bindClass = luajava.bindClass
local ids = {}
local ltrs = {}
local id = 0x7f000000
local context = activity or service
local ViewGroup = bindClass("android.view.ViewGroup")
local String = bindClass("java.lang.String")
local Gravity = bindClass("android.view.Gravity")
local OnClickListener = bindClass("android.view.View$OnClickListener")
local TypedValue = luajava.bindClass("android.util.TypedValue")
local BitmapDrawable = luajava.bindClass("android.graphics.drawable.BitmapDrawable")
local LuaDrawable = luajava.bindClass "com.androlua.LuaDrawable"
local TruncateAt = bindClass("android.text.TextUtils$TruncateAt")
local ArrayAdapter = bindClass("android.widget.ArrayAdapter")
local ScaleType = bindClass("android.widget.ImageView$ScaleType")
local scaleTypes = ScaleType.values()
local android_R = bindClass("android.R")
local Context = bindClass "android.content.Context"
local DisplayMetrics = bindClass "android.util.DisplayMetrics"
local wm = context.getSystemService(Context.WINDOW_SERVICE);
local outMetrics = DisplayMetrics();
wm.getDefaultDisplay().getMetrics(outMetrics);
local W = outMetrics.widthPixels;
local H = outMetrics.heightPixels;
local dm = context.getResources().getDisplayMetrics()
local toint = {
--android:drawingCacheQuality
auto = 0,
low = 1,
high = 2,
--android:importantForAccessibility
auto = 0,
yes = 1,
no = 2,
--android:layerType
none = 0,
software = 1,
hardware = 2,
--android:layoutDirection
ltr = 0,
rtl = 1,
inherit = 2,
locale = 3,
--android:scrollbarStyle
insideOverlay = 0x0,
insideInset = 0x01000000,
outsideOverlay = 0x02000000,
outsideInset = 0x03000000,
--android:visibility
visible = 0,
invisible = 1,
gone = 2,
wrap_content = -2,
fill_parent = -1,
match_parent = -1,
wrap = -2,
fill = -1,
match = -1,
--android:autoLink
none = 0x00,
web = 0x01,
email = 0x02,
phon = 0x04,
map = 0x08,
all = 0x0f,
--android:orientation
vertical = 1,
horizontal = 0,
--android:gravity
axis_clip = 8,
axis_pull_after = 4,
axis_pull_before = 2,
axis_specified = 1,
axis_x_shift = 0,
axis_y_shift = 4,
bottom = 80,
center = 17,
center_horizontal = 1,
center_vertical = 16,
clip_horizontal = 8,
clip_vertical = 128,
display_clip_horizontal = 16777216,
display_clip_vertical = 268435456,
--fill = 119,
fill_horizontal = 7,
fill_vertical = 112,
horizontal_gravity_mask = 7,
left = 3,
no_gravity = 0,
relative_horizontal_gravity_mask = 8388615,
relative_layout_direction = 8388608,
right = 5,
start = 8388611,
top = 48,
vertical_gravity_mask = 112,
["end"] = 8388613,
--android:textAlignment
inherit = 0,
gravity = 1,
textStart = 2,
textEnd = 3,
textCenter = 4,
viewStart = 5,
viewEnd = 6,
--android:inputType
none = 0x00000000,
text = 0x00000001,
textCapCharacters = 0x00001001,
textCapWords = 0x00002001,
textCapSentences = 0x00004001,
textAutoCorrect = 0x00008001,
textAutoComplete = 0x00010001,
textMultiLine = 0x00020001,
textImeMultiLine = 0x00040001,
textNoSuggestions = 0x00080001,
textUri = 0x00000011,
textEmailAddress = 0x00000021,
textEmailSubject = 0x00000031,
textShortMessage = 0x00000041,
textLongMessage = 0x00000051,
textPersonName = 0x00000061,
textPostalAddress = 0x00000071,
textPassword = 0x00000081,
textVisiblePassword = 0x00000091,
textWebEditText = 0x000000a1,
textFilter = 0x000000b1,
textPhonetic = 0x000000c1,
textWebEmailAddress = 0x000000d1,
textWebPassword = 0x000000e1,
number = 0x00000002,
numberSigned = 0x00001002,
numberDecimal = 0x00002002,
numberPassword = 0x00000012,
phone = 0x00000003,
datetime = 0x00000004,
date = 0x00000014,
time = 0x00000024,
--android:imeOptions
normal = 0x00000000,
actionUnspecified = 0x00000000,
actionNone = 0x00000001,
actionGo = 0x00000002,
actionSearch = 0x00000003,
actionSend = 0x00000004,
actionNext = 0x00000005,
actionDone = 0x00000006,
actionPrevious = 0x00000007,
flagNoFullscreen = 0x2000000,
flagNavigatePrevious = 0x4000000,
flagNavigateNext = 0x8000000,
flagNoExtractUi = 0x10000000,
flagNoAccessoryAction = 0x20000000,
flagNoEnterAction = 0x40000000,
flagForceAscii = 0x80000000,
}
local scaleType = {
--android:scaleType
matrix = 0,
fitXY = 1,
fitStart = 2,
fitCenter = 3,
fitEnd = 4,
center = 5,
centerCrop = 6,
centerInside = 7,
}
local rules = {
layout_above = 2,
layout_alignBaseline = 4,
layout_alignBottom = 8,
layout_alignEnd = 19,
layout_alignLeft = 5,
layout_alignParentBottom = 12,
layout_alignParentEnd = 21,
layout_alignParentLeft = 9,
layout_alignParentRight = 11,
layout_alignParentStart = 20,
layout_alignParentTop = 10,
layout_alignRight = 7,
layout_alignStart = 18,
layout_alignTop = 6,
layout_alignWithParentIfMissing = 0,
layout_below = 3,
layout_centerHorizontal = 14,
layout_centerInParent = 13,
layout_centerVertical = 15,
layout_toEndOf = 17,
layout_toLeftOf = 0,
layout_toRightOf = 1,
layout_toStartOf = 16
}
local types = {
px = 0,
dp = 1,
sp = 2,
pt = 3,
["in"] = 4,
mm = 5
}
local function checkType(v)
local n, ty = string.match(v, "^(%-?%d+)(%a%a)$")
return tonumber(n), types[ty]
end
local function checkPercent(v)
local n, ty = string.match(v, "^(%-?[%.%d]+)%%([wh])$")
if ty == nil then
return nil
elseif ty == "w" then
return tonumber(n) * W / 100
elseif ty == "h" then
return tonumber(n) * H / 100
end
end
local function split(s, t)
local idx = 1
local l = #s
return function()
local i = s:find(t, idx)
if idx >= l then
return nil
end
if i == nil then
i = l + 1
end
local sub = s:sub(idx, i - 1)
idx = i + 1
return sub
end
end
local function checkint(s)
local ret = 0
for n in split(s, "|") do
if toint[n] then
ret = ret | toint[n]
else
return nil
end
end
return ret
end
local function checkNumber(var)
if type(var) == "string" then
if var == "true" then
return true
elseif var == "false" then
return false
end
if toint[var] then
return toint[var]
end
local i = checkint(var)
if i then
return i
end
local p = checkPercent(var)
if p then
return p
end
local h = string.match(var, "^#(%x+)$")
if h then
local c = tonumber(h, 16)
if c then
if #h <= 6 then
return c - 0x1000000
elseif #h <= 8 then
if c > 0x7fffffff then
return c - 0x100000000
else
return c
end
end
end
end
local n, ty = checkType(var)
if ty then
return TypedValue.applyDimension(ty, n, dm)
end
end
-- return var
end
local function checkValue(var)
return tonumber(var) or checkNumber(var) or var
end
local function checkValues(...)
local vars = { ... }
for n = 1, #vars do
vars[n] = checkValue(vars[n])
end
return unpack(vars)
end
local function getattr(s)
return android_R.attr[s]
end
local function checkattr(s)
local e, s = pcall(getattr, s)
if e then
return s
end
return nil
end
local function getIdentifier(name)
return context.getResources().getIdentifier(name, null, null)
end
local function dump2 (t)
local _t = {}
table.insert(_t, tostring(t))
table.insert(_t, "\t{")
for k, v in pairs(t) do
if type(v) == "table" then
table.insert(_t, "\t\t" .. tostring(k) .. "={" .. tostring(v[1]) .. " ...}")
else
table.insert(_t, "\t\t" .. tostring(k) .. "=" .. tostring(v))
end
end
table.insert(_t, "\t}")
t = table.concat(_t, "\n")
return t
end
local ver = luajava.bindClass("android.os.Build").VERSION.SDK_INT;
function setBackground(view, bg)
if ver < 16 then
view.setBackgroundDrawable(bg)
else
view.setBackground(bg)
end
end
local function setattribute(root, view, params, k, v, ids)
if k == "layout_x" then
params.x = checkValue(v)
elseif k == "layout_y" then
params.y = checkValue(v)
elseif k == "layout_weight" then
params.weight = checkValue(v)
elseif k == "layout_gravity" then
params.gravity = checkValue(v)
elseif k == "layout_marginStart" then
params.setMarginStart(checkValue(v))
elseif k == "layout_marginEnd" then
params.setMarginEnd(checkValue(v))
elseif rules[k] and (v == true or v == "true") then
params.addRule(rules[k])
elseif rules[k] then
params.addRule(rules[k], ids[v])
elseif k=="items" then --创建列表项目
if type(v)=="table" then
if view.adapter then
view.adapter.addAll(v)
else
local adapter=ArrayListAdapter(context,android_R.layout.simple_list_item_1, String(v))
view.setAdapter(adapter)
end
end
elseif k == "pages" and type(v) == "table" then
--创建页项目
elseif k == "onClick" then
--设置onClick事件接口
elseif k == "textSize" then
if tonumber(v) then
view.setTextSize(tonumber(v))
elseif type(v) == "string" then
local n, ty = checkType(v)
if ty then
view.setTextSize(ty, n)
else
view.setTextSize(v)
end
else
view.setTextSize(v)
end
elseif k == "textAppearance" then
view.setTextAppearance(context, checkattr(v))
elseif k == "ellipsize" then
view.setEllipsize(TruncateAt[string.upper(v)])
elseif k == "url" then
view.loadUrl(url)
elseif k == "src" then
if v:find("^%?") then
view.setImageResource(getIdentifier(v:sub(2, -1)))
else
if (not v:find("^/")) and luadir then
v = luadir .. v
end
view.setImageBitmap(loadbitmap(v))
end
elseif k == "scaleType" then
view.setScaleType(scaleTypes[scaleType[v]])
elseif k == "background" then
if type(v) == "string" then
if v:find("^%?") then
view.setBackgroundResource(getIdentifier(v:sub(2, -1)))
elseif v:find("^#") then
view.setBackgroundColor(checkNumber(v))
elseif rawget(root, v) or rawget(_G, v) then
v = rawget(root, v) or rawget(_G, v)
if type(v) == "function" then
setBackground(view, LuaDrawable(v))
elseif type(v) == "userdata" then
setBackground(view, v)
end
else
if (not v:find("^/")) and luadir then
v = luadir .. v
end
if v:find("%.9%.png") then
setBackground(view, NineBitmapDrawable(loadbitmap(v)))
else
setBackground(view, BitmapDrawable(loadbitmap(v)))
end
end
elseif type(v) == "userdata" then
setBackground(view, v)
elseif type(v) == "number" then
view.setBackgroundColor(v)
end
elseif k == "password" and (v == "true" or v == true) then
view.setInputType(0x81)
elseif type(k) == "string" and not (k:find("layout_")) and not (k:find("padding")) and k ~= "style" then
--设置属性
k = string.gsub(k, "^(%w)", function(s)
return string.upper(s)
end)
if k == "Text" or k == "Title" or k == "Subtitle" then
view["set" .. k](v)
else
view["set" .. k](checkValue(v))
end
end
end
local function setMiniSize(view)
view.setMinimumHeight(checkValue("18dp"))
view.setMinimumWidth(checkValue("18dp"))
end
local function copytable(f, t, b)
for k, v in pairs(f) do
if k == 1 then
elseif b or t[k] == nil then
t[k] = v
end
end
end
local function setstyle(c, t, root, view, params, ids)
local mt = getmetatable(t)
if not mt or not mt.__index then
return
end
local m = mt.__index
if c[m] then
return
end
c[m] = true
for k, v in pairs(m) do
if not rawget(c, k) then
pcall(setattribute, root, view, params, k, v, ids)
end
c[k] = true
end
setstyle(c, m, root, view, params, ids)
end
local function loadlayout(t, root, group,p)
if type(t) == "string" then
p = t
t = require(t)
elseif type(t) ~= "table" then
error(string.format("loadlayout error: Fist value Must be a table, checked import layout.", 0))
end
root = root or _G
local view, style
if t.style then
if t.style:find("^%?") then
style = getIdentifier(t.style:sub(2, -1))
else
local st, sty = pcall(require, t.style)
if st then
--copytable(sty,t)
setmetatable(t, { __index = sty })
else
style = checkattr(t.style)
end
end
end
if not t[1] then
error(string.format("loadlayout error: Fist value Must be a Class, checked import package.\n\tat %s", dump2(t)), 0)
end
if style then
view = t[1](context, nil, style)
else
view = t[1](context) --创建view
end
if p then
view.onTouch = function(v, e)
if e.getAction() == MotionEvent.ACTION_DOWN then
print("import from \"" .. p.."\"")
return true
end
end
else
view.setTag(t)
if group and group == AbsoluteLayout then
view.onTouch = move
else
view.onTouch = onTouch
end
end
local vgw, vgh
pcall(setMiniSize, view)
if view.getBackground() == nil then
setBackground(view, gd)
end
local params = ViewGroup.LayoutParams(checkValue(t.layout_width) or -2, checkValue(t.layout_height) or -2) --设置layout属性
if group then
params = group.LayoutParams(params)
end
--设置layout_margin属性
if t.layout_margin or t.layout_marginStart or t.layout_marginEnd or t.layout_marginLeft or t.layout_marginTop or t.layout_marginRight or t.layout_marginBottom then
params.setMargins(checkValues( t.layout_marginLeft or t.layout_margin or 0, t.layout_marginTop or t.layout_margin or 0, t.layout_marginRight or t.layout_margin or 0, t.layout_marginBottom or t.layout_margin or 0))
end
--设置padding属性
if t.padding or t.paddingLeft or t.paddingTop or t.paddingRight or t.paddingBottom then
view.setPadding(checkValues(t.paddingLeft or t.padding or 0, t.paddingTop or t.padding or 0, t.paddingRight or t.padding or 0, t.paddingBottom or t.padding or 0))
end
if t.paddingStart or t.paddingEnd then
view.setPaddingRelative(checkValues(t.paddingStart or t.padding or 0, t.paddingTop or t.padding or 0, t.paddingEnd or t.padding or 0, t.paddingBottom or t.padding or 0))
end
local c = {}
setmetatable(c, { __index = t })
setstyle(c, t, root, view, params, ids)
for k, v in pairs(t) do
if tonumber(k) and (type(v) == "table" or type(v) == "string") then
--创建子view
if luajava.instanceof(view,AdapterView) then
if type(v)=="string" then
v=require(v)
end
view.adapter=LuaAdapter(context,v)
else
view.addView(loadlayout(v,root,t[1]))
end
elseif k == "id" then
--创建view的全局变量
rawset(root, v, view)
id = id + 1
view.setId(id)
ids[v] = id
else
local e, s = pcall(setattribute, root, view, params, k, v, ids)
if not e then
local _, i = s:find(":%d+:")
s = s:sub(i or 1, -1)
error(string.format("loadlayout error %s \n\tat %s\n\tat key=%s value=%s\n\tat %s", s, view.toString(), k, v, dump2(t)), 0)
end
end
end
--if group then
--group.addView(view,params)
--else
view.setLayoutParams(params)
return view
--end
end
return loadlayout