Skip to content

Instantly share code, notes, and snippets.

@markushi
Created November 8, 2022 14:07
Show Gist options
  • Save markushi/ba2a580836a7f2b93811d56d99ba7f00 to your computer and use it in GitHub Desktop.
Save markushi/ba2a580836a7f2b93811d56d99ba7f00 to your computer and use it in GitHub Desktop.
Random View Hierarchy Generator
import random
import json
widgets = [
"com.google.android.material.appbar.AppBarLayout",
"androidx.appcompat.widget.Toolbar",
"Button",
"androidx.coordinatorlayout.widget.CoordinatorLayout",
"FrameLayout",
"io.sentry.example.ExampleRadioButton"
]
def generate_random_item():
return {
"type": random.choice(widgets),
"identifier": f"R.id.{random.randint(1024, 1024*1024)}",
"width": random.randint(0, 2048),
"height": random.randint(0, 4096),
"depth": random.randint(0, 100),
"x": random.random() * 2048,
"y": random.random() * 4096,
"visible": bool(random.getrandbits(1)),
"alpha": random.random(),
"children": []
}
def attach_children(nodes: list, item_count: int):
while len(nodes) > 0 and item_count > 0:
node = nodes.pop(0)
child_count = min(item_count, random.randint(1, 10))
for i in range(0, child_count):
child = generate_random_item()
node["children"].append(child)
nodes.append(child)
item_count -= 1
if __name__ == '__main__':
root = generate_random_item()
attach_children([root], 200)
print(json.dumps(root))
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.1012600",
"width": 1640,
"height": 363,
"depth": 63,
"x": 400.02290566687225,
"y": 1120.0575263099913,
"visible": false,
"alpha": 0.8699241693021569,
"children": [
{
"type": "FrameLayout",
"identifier": "R.id.135372",
"width": 691,
"height": 1260,
"depth": 3,
"x": 1865.7748931924148,
"y": 478.150136118722,
"visible": false,
"alpha": 0.624580193507624,
"children": [
{
"type": "FrameLayout",
"identifier": "R.id.1032004",
"width": 557,
"height": 1071,
"depth": 41,
"x": 1269.600991480173,
"y": 2389.6530664575084,
"visible": false,
"alpha": 0.5568896225980112,
"children": [
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.275197",
"width": 1687,
"height": 2051,
"depth": 27,
"x": 670.9430464495074,
"y": 1800.8016661514757,
"visible": false,
"alpha": 0.47609009143075376,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.1005609",
"width": 17,
"height": 2714,
"depth": 86,
"x": 994.5093756402821,
"y": 2920.510658925037,
"visible": false,
"alpha": 0.7931475393271042,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.191166",
"width": 1670,
"height": 421,
"depth": 45,
"x": 864.2005559777842,
"y": 668.979327194244,
"visible": false,
"alpha": 0.02081074842828623,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.485026",
"width": 1354,
"height": 452,
"depth": 90,
"x": 51.53849875080846,
"y": 1120.7293112374882,
"visible": true,
"alpha": 0.32650624990261023,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.243179",
"width": 797,
"height": 2995,
"depth": 83,
"x": 851.071814448914,
"y": 68.27324668906931,
"visible": false,
"alpha": 0.1967179577037108,
"children": []
},
{
"type": "Button",
"identifier": "R.id.137054",
"width": 1688,
"height": 750,
"depth": 31,
"x": 109.52083503348285,
"y": 1662.5048146606732,
"visible": false,
"alpha": 0.06767843777635596,
"children": []
}
]
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.867931",
"width": 1594,
"height": 2867,
"depth": 13,
"x": 691.6231984776693,
"y": 2427.61040917009,
"visible": false,
"alpha": 0.9606651267460201,
"children": [
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.830046",
"width": 1123,
"height": 3519,
"depth": 58,
"x": 1402.1971126437759,
"y": 3665.276011864943,
"visible": true,
"alpha": 0.9276508488814958,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.993995",
"width": 1041,
"height": 2994,
"depth": 16,
"x": 1864.9530526620367,
"y": 3317.1251587307024,
"visible": false,
"alpha": 0.1973096955662199,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.858744",
"width": 1792,
"height": 58,
"depth": 25,
"x": 149.160508695619,
"y": 2096.230164397268,
"visible": true,
"alpha": 0.3059324452339345,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.1023400",
"width": 447,
"height": 1816,
"depth": 81,
"x": 1905.6654222190793,
"y": 2034.4361793396793,
"visible": true,
"alpha": 0.5675964493402565,
"children": []
},
{
"type": "Button",
"identifier": "R.id.474010",
"width": 1054,
"height": 377,
"depth": 81,
"x": 898.7149565210707,
"y": 100.10657659383924,
"visible": true,
"alpha": 0.9717627385850816,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.697698",
"width": 1814,
"height": 2392,
"depth": 58,
"x": 1692.267024793386,
"y": 616.9093567723321,
"visible": true,
"alpha": 0.4236380318883737,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.140211",
"width": 412,
"height": 3021,
"depth": 7,
"x": 1211.3695175137434,
"y": 2645.6887120174392,
"visible": false,
"alpha": 0.9836024596522206,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.21197",
"width": 452,
"height": 3846,
"depth": 0,
"x": 1914.5647957150607,
"y": 14.2635416047342,
"visible": true,
"alpha": 0.7454912065250033,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.865973",
"width": 729,
"height": 2853,
"depth": 94,
"x": 1030.0792578905105,
"y": 1921.5133418338796,
"visible": true,
"alpha": 0.9122414194390523,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.4660",
"width": 381,
"height": 3942,
"depth": 35,
"x": 259.7750835119,
"y": 2832.1096530765813,
"visible": true,
"alpha": 0.35834929330825727,
"children": []
}
]
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.545264",
"width": 2041,
"height": 884,
"depth": 75,
"x": 196.00381833021538,
"y": 3940.958524317171,
"visible": false,
"alpha": 0.7471619343750625,
"children": [
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.410659",
"width": 1217,
"height": 3954,
"depth": 52,
"x": 1611.9549033744765,
"y": 3034.082357149924,
"visible": true,
"alpha": 0.6255845581729848,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.242846",
"width": 856,
"height": 2669,
"depth": 14,
"x": 890.0587217190503,
"y": 4033.618889513456,
"visible": false,
"alpha": 0.4890817204886192,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.351539",
"width": 1839,
"height": 341,
"depth": 88,
"x": 245.1599738738314,
"y": 1010.6221810410884,
"visible": false,
"alpha": 0.791945262703728,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.88146",
"width": 1555,
"height": 2035,
"depth": 63,
"x": 462.87678266065245,
"y": 1145.5756238318322,
"visible": false,
"alpha": 0.5554933898765432,
"children": []
}
]
}
]
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.192450",
"width": 1593,
"height": 3591,
"depth": 94,
"x": 1758.479620983295,
"y": 3709.43565529093,
"visible": true,
"alpha": 0.07308541377085254,
"children": [
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.411945",
"width": 2033,
"height": 1233,
"depth": 16,
"x": 131.29399229055844,
"y": 1755.48877039247,
"visible": false,
"alpha": 0.7091483608554829,
"children": [
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.404042",
"width": 1623,
"height": 2733,
"depth": 13,
"x": 1077.1821905708991,
"y": 1120.2616597252782,
"visible": false,
"alpha": 0.1368933918386429,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.298528",
"width": 509,
"height": 2505,
"depth": 25,
"x": 1696.4823061619845,
"y": 3475.546463832566,
"visible": true,
"alpha": 0.4038113862446203,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.857555",
"width": 1032,
"height": 1452,
"depth": 37,
"x": 1598.214585542847,
"y": 120.62395741553155,
"visible": true,
"alpha": 0.03564787306457251,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.99842",
"width": 656,
"height": 2166,
"depth": 20,
"x": 697.3366230896438,
"y": 2967.207235615594,
"visible": false,
"alpha": 0.024186312871745108,
"children": []
},
{
"type": "Button",
"identifier": "R.id.42293",
"width": 946,
"height": 2820,
"depth": 28,
"x": 1684.1652296666496,
"y": 892.8656782100302,
"visible": true,
"alpha": 0.939108607106204,
"children": []
},
{
"type": "Button",
"identifier": "R.id.645825",
"width": 1405,
"height": 1420,
"depth": 66,
"x": 1565.5438270226746,
"y": 1856.4187999658693,
"visible": true,
"alpha": 0.4187037533046828,
"children": []
}
]
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.349462",
"width": 449,
"height": 3825,
"depth": 51,
"x": 741.3384522760853,
"y": 1194.8448461239195,
"visible": true,
"alpha": 0.2812803735355103,
"children": [
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.660768",
"width": 729,
"height": 2930,
"depth": 8,
"x": 881.9251918036448,
"y": 1008.5241940477167,
"visible": true,
"alpha": 0.7488142769458506,
"children": []
},
{
"type": "Button",
"identifier": "R.id.428897",
"width": 914,
"height": 3332,
"depth": 27,
"x": 1354.490778742892,
"y": 1968.629399178512,
"visible": false,
"alpha": 0.7983785271718482,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.403150",
"width": 20,
"height": 1073,
"depth": 43,
"x": 556.3152579393309,
"y": 1468.3762251315648,
"visible": false,
"alpha": 0.34670402790400623,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.63774",
"width": 880,
"height": 1815,
"depth": 33,
"x": 955.4584193225405,
"y": 228.93327527967585,
"visible": true,
"alpha": 0.7307658694068782,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.478306",
"width": 1084,
"height": 3325,
"depth": 57,
"x": 590.939104938531,
"y": 2255.881058542564,
"visible": true,
"alpha": 0.004276385600519905,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.246279",
"width": 677,
"height": 698,
"depth": 85,
"x": 2035.9426089786646,
"y": 2208.8716557988014,
"visible": false,
"alpha": 0.4986477124765085,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.860636",
"width": 537,
"height": 643,
"depth": 31,
"x": 787.8979076131513,
"y": 375.06314423917865,
"visible": true,
"alpha": 0.9360046402532582,
"children": []
},
{
"type": "Button",
"identifier": "R.id.8555",
"width": 961,
"height": 1810,
"depth": 27,
"x": 1814.112583544109,
"y": 375.759718182117,
"visible": false,
"alpha": 0.16686431059746332,
"children": []
}
]
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.1015838",
"width": 768,
"height": 3763,
"depth": 92,
"x": 901.1017330197819,
"y": 91.3663203529918,
"visible": false,
"alpha": 0.21168353663280115,
"children": [
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.960698",
"width": 494,
"height": 3230,
"depth": 27,
"x": 1024.8172672513176,
"y": 2214.0089101918325,
"visible": true,
"alpha": 0.9772383153903675,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.485975",
"width": 1348,
"height": 2407,
"depth": 32,
"x": 1030.1786684524343,
"y": 139.465515860285,
"visible": true,
"alpha": 0.6631266171886658,
"children": []
}
]
},
{
"type": "FrameLayout",
"identifier": "R.id.309576",
"width": 1215,
"height": 228,
"depth": 81,
"x": 641.4990864601309,
"y": 2576.444832749782,
"visible": true,
"alpha": 0.7001991638741025,
"children": [
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.551464",
"width": 1068,
"height": 1168,
"depth": 11,
"x": 283.52511751854854,
"y": 844.5343260887521,
"visible": false,
"alpha": 0.002666918131471241,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.55076",
"width": 1467,
"height": 2481,
"depth": 97,
"x": 243.13434663366138,
"y": 1748.2997237519876,
"visible": false,
"alpha": 0.12440443308109284,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.217944",
"width": 1620,
"height": 3853,
"depth": 29,
"x": 303.3480855625601,
"y": 4017.715081399166,
"visible": true,
"alpha": 0.06703043218068139,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.473800",
"width": 906,
"height": 2825,
"depth": 7,
"x": 492.57355214997756,
"y": 2768.5059916603286,
"visible": true,
"alpha": 0.5365053289762237,
"children": []
}
]
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.407381",
"width": 1197,
"height": 2090,
"depth": 91,
"x": 185.1908651295762,
"y": 2418.018256342644,
"visible": true,
"alpha": 0.7627193872816245,
"children": [
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.177998",
"width": 1982,
"height": 647,
"depth": 41,
"x": 51.204073813647256,
"y": 2549.6589354153493,
"visible": false,
"alpha": 0.4908826271426524,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.581938",
"width": 1906,
"height": 557,
"depth": 67,
"x": 290.7522731372767,
"y": 223.54714653006795,
"visible": false,
"alpha": 0.1988945912106801,
"children": []
},
{
"type": "Button",
"identifier": "R.id.427406",
"width": 931,
"height": 93,
"depth": 47,
"x": 1192.674005555491,
"y": 112.52464446343038,
"visible": true,
"alpha": 0.22180275333029198,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.487585",
"width": 1606,
"height": 2028,
"depth": 28,
"x": 808.507889231279,
"y": 1489.9636413114067,
"visible": false,
"alpha": 0.07617781569983928,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.187942",
"width": 1374,
"height": 762,
"depth": 16,
"x": 1959.4087300024282,
"y": 4082.789027754579,
"visible": false,
"alpha": 0.01585608602862454,
"children": []
}
]
},
{
"type": "FrameLayout",
"identifier": "R.id.394776",
"width": 743,
"height": 1386,
"depth": 26,
"x": 1937.9796720783065,
"y": 1098.7828722982263,
"visible": false,
"alpha": 0.8099853379199005,
"children": [
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.217816",
"width": 1914,
"height": 213,
"depth": 13,
"x": 702.6512004733643,
"y": 809.6324498107706,
"visible": true,
"alpha": 0.21568092141551587,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.667261",
"width": 921,
"height": 2215,
"depth": 70,
"x": 619.7112252074085,
"y": 3912.99295845081,
"visible": false,
"alpha": 0.8055311011492936,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.486155",
"width": 1823,
"height": 4030,
"depth": 52,
"x": 1679.5026364045768,
"y": 2864.197782083095,
"visible": true,
"alpha": 0.13529942071794088,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.994243",
"width": 692,
"height": 3688,
"depth": 80,
"x": 746.6878037196366,
"y": 3397.9964169306418,
"visible": true,
"alpha": 0.2416293010857704,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.336614",
"width": 572,
"height": 2542,
"depth": 51,
"x": 1029.4962015989067,
"y": 2863.699995255559,
"visible": false,
"alpha": 0.661472007879686,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.868841",
"width": 1359,
"height": 971,
"depth": 8,
"x": 58.61102832500001,
"y": 3107.493769025857,
"visible": true,
"alpha": 0.2689391381953423,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.283403",
"width": 2012,
"height": 3213,
"depth": 22,
"x": 999.8397147981866,
"y": 2919.4306727942308,
"visible": true,
"alpha": 0.44653102441900905,
"children": []
},
{
"type": "Button",
"identifier": "R.id.927982",
"width": 1281,
"height": 1941,
"depth": 77,
"x": 1201.55415726095,
"y": 377.0903731448043,
"visible": true,
"alpha": 0.33303280858748563,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.520880",
"width": 1642,
"height": 983,
"depth": 4,
"x": 1806.5276322109548,
"y": 3428.7027950162646,
"visible": true,
"alpha": 0.5741294595395241,
"children": []
}
]
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.434252",
"width": 810,
"height": 2968,
"depth": 7,
"x": 456.16747462313197,
"y": 420.63450264809853,
"visible": false,
"alpha": 0.2607797501831972,
"children": [
{
"type": "FrameLayout",
"identifier": "R.id.737309",
"width": 172,
"height": 3915,
"depth": 79,
"x": 43.059682868411755,
"y": 557.5028422046198,
"visible": true,
"alpha": 0.5972551077806462,
"children": []
},
{
"type": "Button",
"identifier": "R.id.431273",
"width": 1567,
"height": 1840,
"depth": 89,
"x": 683.8403960493793,
"y": 1628.8108211062786,
"visible": true,
"alpha": 0.07347836972148591,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.337768",
"width": 1659,
"height": 1725,
"depth": 32,
"x": 1532.1161417336318,
"y": 3520.8420682019378,
"visible": false,
"alpha": 0.35274192041287844,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.655625",
"width": 1970,
"height": 2020,
"depth": 39,
"x": 912.0114359411491,
"y": 899.123583046638,
"visible": false,
"alpha": 0.5891168100040708,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.781208",
"width": 118,
"height": 1219,
"depth": 99,
"x": 1812.400094851244,
"y": 1415.2708987770743,
"visible": false,
"alpha": 0.3225702666996946,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.545267",
"width": 142,
"height": 1354,
"depth": 11,
"x": 117.50343821060983,
"y": 2300.986837230254,
"visible": false,
"alpha": 0.27208821560998697,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.716657",
"width": 1009,
"height": 462,
"depth": 13,
"x": 1255.7060422735742,
"y": 3655.853268088322,
"visible": true,
"alpha": 0.2646798073438674,
"children": []
}
]
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.137711",
"width": 1417,
"height": 2479,
"depth": 10,
"x": 1134.916020942238,
"y": 2627.3904501755446,
"visible": false,
"alpha": 0.968912588936291,
"children": [
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.625318",
"width": 416,
"height": 2162,
"depth": 87,
"x": 1937.4622265374223,
"y": 3227.286446601895,
"visible": false,
"alpha": 0.011599797888340757,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.229160",
"width": 1239,
"height": 1207,
"depth": 30,
"x": 1370.446597158708,
"y": 3697.6388537113953,
"visible": false,
"alpha": 0.768499030807068,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.548850",
"width": 1006,
"height": 2947,
"depth": 52,
"x": 1582.9524160422857,
"y": 1526.3412188225975,
"visible": false,
"alpha": 0.535174873521044,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.637218",
"width": 515,
"height": 3503,
"depth": 57,
"x": 1382.7928799804806,
"y": 795.461377730046,
"visible": true,
"alpha": 0.5861544683823587,
"children": []
}
]
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.430404",
"width": 48,
"height": 3309,
"depth": 18,
"x": 742.6189866933407,
"y": 3899.40031346708,
"visible": true,
"alpha": 0.7205272229452662,
"children": [
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.15801",
"width": 1100,
"height": 2552,
"depth": 7,
"x": 1192.057570752639,
"y": 3468.4955065557015,
"visible": false,
"alpha": 0.059350195982493914,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.797564",
"width": 2031,
"height": 84,
"depth": 39,
"x": 1234.0188657353824,
"y": 1356.9657354089031,
"visible": true,
"alpha": 0.4904085216688021,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.432515",
"width": 16,
"height": 923,
"depth": 32,
"x": 1873.4153399613847,
"y": 1937.0413524363094,
"visible": true,
"alpha": 0.318964603342487,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.483018",
"width": 318,
"height": 3098,
"depth": 71,
"x": 877.9866243343163,
"y": 3769.736162612897,
"visible": false,
"alpha": 0.5229928468563961,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.580676",
"width": 361,
"height": 917,
"depth": 52,
"x": 1349.1354197092833,
"y": 1995.9368507799527,
"visible": true,
"alpha": 0.9114399146450327,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.863686",
"width": 1033,
"height": 560,
"depth": 1,
"x": 1598.47976155259,
"y": 828.9517466744023,
"visible": true,
"alpha": 0.34651529003891657,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.188901",
"width": 1989,
"height": 3229,
"depth": 51,
"x": 1057.9881131928287,
"y": 1961.0422862658993,
"visible": true,
"alpha": 0.30499320619103176,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.741120",
"width": 1318,
"height": 1187,
"depth": 51,
"x": 703.0138711119614,
"y": 2657.2555728585517,
"visible": false,
"alpha": 0.5855840307849276,
"children": []
},
{
"type": "Button",
"identifier": "R.id.130266",
"width": 510,
"height": 202,
"depth": 4,
"x": 1165.996593221961,
"y": 397.5531905032476,
"visible": true,
"alpha": 0.9872265350511663,
"children": []
}
]
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.635586",
"width": 136,
"height": 3302,
"depth": 30,
"x": 850.7629830814144,
"y": 2094.948233900517,
"visible": false,
"alpha": 0.6413616544518812,
"children": [
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.897955",
"width": 1440,
"height": 2416,
"depth": 15,
"x": 1469.015331214818,
"y": 1612.2136302167023,
"visible": false,
"alpha": 0.16868921489536315,
"children": []
},
{
"type": "Button",
"identifier": "R.id.789812",
"width": 1196,
"height": 3649,
"depth": 5,
"x": 130.72765444419952,
"y": 2280.3928802825535,
"visible": true,
"alpha": 0.4229716446049807,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.836129",
"width": 1663,
"height": 3492,
"depth": 94,
"x": 1213.5593281228737,
"y": 3704.3163396097543,
"visible": false,
"alpha": 0.6351565410567444,
"children": []
},
{
"type": "Button",
"identifier": "R.id.112362",
"width": 38,
"height": 475,
"depth": 59,
"x": 646.2718883585342,
"y": 3709.3894603742365,
"visible": true,
"alpha": 0.14306644762896703,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.630848",
"width": 1210,
"height": 3573,
"depth": 11,
"x": 1934.7277685407935,
"y": 3885.2807375778093,
"visible": false,
"alpha": 0.6604245527315135,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.224888",
"width": 1150,
"height": 854,
"depth": 65,
"x": 147.1762467430451,
"y": 2298.7934437956033,
"visible": false,
"alpha": 0.1553599156922184,
"children": []
}
]
}
]
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.586255",
"width": 1307,
"height": 3453,
"depth": 81,
"x": 2043.033212801322,
"y": 2723.068803019948,
"visible": true,
"alpha": 0.5114906813800452,
"children": [
{
"type": "Button",
"identifier": "R.id.203291",
"width": 266,
"height": 1235,
"depth": 1,
"x": 181.69113789747507,
"y": 1799.14649407027,
"visible": true,
"alpha": 0.3130035114989862,
"children": [
{
"type": "Button",
"identifier": "R.id.24594",
"width": 1268,
"height": 2809,
"depth": 34,
"x": 752.3454818450455,
"y": 1191.8286709891804,
"visible": true,
"alpha": 0.9829202201138141,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.85876",
"width": 1967,
"height": 3526,
"depth": 13,
"x": 590.4655416733494,
"y": 3862.9365560125566,
"visible": true,
"alpha": 0.3687586556917809,
"children": []
},
{
"type": "Button",
"identifier": "R.id.643993",
"width": 1521,
"height": 3890,
"depth": 53,
"x": 1353.4748760228972,
"y": 1630.3706357351298,
"visible": false,
"alpha": 0.38855578644684186,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.712455",
"width": 1447,
"height": 339,
"depth": 10,
"x": 1990.502129660521,
"y": 3089.187873271217,
"visible": false,
"alpha": 0.6946211998168941,
"children": []
},
{
"type": "Button",
"identifier": "R.id.1032655",
"width": 826,
"height": 953,
"depth": 60,
"x": 749.4578164314673,
"y": 1416.36483888071,
"visible": true,
"alpha": 0.6043459069404387,
"children": []
},
{
"type": "Button",
"identifier": "R.id.581629",
"width": 76,
"height": 510,
"depth": 14,
"x": 1837.9887526757248,
"y": 1750.7751466477762,
"visible": false,
"alpha": 0.3360759774782286,
"children": []
}
]
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.374408",
"width": 1873,
"height": 1235,
"depth": 98,
"x": 1069.695927767376,
"y": 2126.3108996542333,
"visible": true,
"alpha": 0.94654479932306,
"children": [
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.451054",
"width": 1183,
"height": 3046,
"depth": 42,
"x": 693.3060375496445,
"y": 2710.620836872901,
"visible": false,
"alpha": 0.5635462720903868,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.438736",
"width": 204,
"height": 3596,
"depth": 81,
"x": 664.8046648803831,
"y": 2109.683188472338,
"visible": true,
"alpha": 0.8522912672851718,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.88795",
"width": 981,
"height": 2049,
"depth": 90,
"x": 1802.2654468091705,
"y": 1649.5914165005756,
"visible": true,
"alpha": 0.28988078700012465,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.903484",
"width": 1664,
"height": 1804,
"depth": 57,
"x": 819.2684297045794,
"y": 1898.2024479136699,
"visible": false,
"alpha": 0.23078499421767407,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.128956",
"width": 1250,
"height": 2438,
"depth": 64,
"x": 949.0471188738754,
"y": 754.6934324165186,
"visible": true,
"alpha": 0.022129443342571498,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.48606",
"width": 1473,
"height": 3515,
"depth": 10,
"x": 1493.856288841895,
"y": 3466.110782300444,
"visible": false,
"alpha": 0.9740339150194117,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.735976",
"width": 1345,
"height": 3174,
"depth": 83,
"x": 608.3901949814328,
"y": 1285.4069546009596,
"visible": true,
"alpha": 0.5620276095212461,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.1035408",
"width": 1826,
"height": 1840,
"depth": 93,
"x": 910.5745026211209,
"y": 2353.6564746398976,
"visible": false,
"alpha": 0.9920651450586664,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.178585",
"width": 1495,
"height": 2120,
"depth": 81,
"x": 1936.026236059565,
"y": 1501.419860588016,
"visible": true,
"alpha": 0.9889637736664868,
"children": []
}
]
},
{
"type": "Button",
"identifier": "R.id.299233",
"width": 215,
"height": 315,
"depth": 43,
"x": 5.680319523066601,
"y": 1641.3266717702963,
"visible": false,
"alpha": 0.969052057778235,
"children": [
{
"type": "FrameLayout",
"identifier": "R.id.971349",
"width": 1498,
"height": 1625,
"depth": 95,
"x": 1348.546150107128,
"y": 1929.090233893833,
"visible": false,
"alpha": 0.9692075957991796,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.448325",
"width": 1106,
"height": 1107,
"depth": 47,
"x": 2047.2435191081738,
"y": 3124.6083413528354,
"visible": true,
"alpha": 0.10054419138539061,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.488662",
"width": 1392,
"height": 2493,
"depth": 17,
"x": 167.4933979169582,
"y": 485.13020276404814,
"visible": true,
"alpha": 0.18980185634511337,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.661875",
"width": 356,
"height": 3646,
"depth": 100,
"x": 846.4984109031357,
"y": 1035.570617909722,
"visible": false,
"alpha": 0.9387028624482286,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.67645",
"width": 12,
"height": 3456,
"depth": 22,
"x": 935.6735024781622,
"y": 859.6080581461019,
"visible": false,
"alpha": 0.4372178237543809,
"children": []
}
]
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.734688",
"width": 1757,
"height": 1662,
"depth": 54,
"x": 787.0235780763703,
"y": 363.4374581735715,
"visible": false,
"alpha": 0.6254746174758125,
"children": [
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.272640",
"width": 779,
"height": 3482,
"depth": 5,
"x": 806.349678620978,
"y": 3349.3251066250477,
"visible": false,
"alpha": 0.45226763320500907,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.785208",
"width": 172,
"height": 715,
"depth": 80,
"x": 1463.0288205720094,
"y": 771.5064287116297,
"visible": true,
"alpha": 0.22861552739520297,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.229590",
"width": 267,
"height": 1315,
"depth": 25,
"x": 880.6613528500325,
"y": 2218.1234877015127,
"visible": false,
"alpha": 0.6282560148021655,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.326950",
"width": 1344,
"height": 3836,
"depth": 80,
"x": 1722.7458653525002,
"y": 1891.6682654527917,
"visible": false,
"alpha": 0.9909648034969711,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.639652",
"width": 1282,
"height": 693,
"depth": 34,
"x": 1193.7986713982493,
"y": 2758.575991273539,
"visible": true,
"alpha": 0.08585192898804928,
"children": []
},
{
"type": "Button",
"identifier": "R.id.734022",
"width": 450,
"height": 652,
"depth": 54,
"x": 171.523125334548,
"y": 2802.1681936220675,
"visible": true,
"alpha": 0.03434691817418434,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.942306",
"width": 990,
"height": 3150,
"depth": 75,
"x": 184.25497728586015,
"y": 3976.274853172419,
"visible": false,
"alpha": 0.2697978419880588,
"children": []
},
{
"type": "Button",
"identifier": "R.id.640324",
"width": 903,
"height": 717,
"depth": 80,
"x": 166.99176039329586,
"y": 2094.995394164109,
"visible": true,
"alpha": 0.48324325217379405,
"children": []
}
]
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.881465",
"width": 376,
"height": 89,
"depth": 65,
"x": 1029.3737046635015,
"y": 18.95715825897105,
"visible": false,
"alpha": 0.5516151947482971,
"children": [
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.867508",
"width": 720,
"height": 1033,
"depth": 69,
"x": 1296.7863991251133,
"y": 2306.8378334533086,
"visible": false,
"alpha": 0.69856330410077,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.894555",
"width": 1530,
"height": 635,
"depth": 91,
"x": 296.5536969739305,
"y": 2800.365566470233,
"visible": false,
"alpha": 0.36246069962860406,
"children": []
}
]
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.761018",
"width": 1504,
"height": 397,
"depth": 50,
"x": 515.9496873193627,
"y": 1203.0229092126606,
"visible": false,
"alpha": 0.4346401143571642,
"children": [
{
"type": "Button",
"identifier": "R.id.745557",
"width": 1641,
"height": 3823,
"depth": 2,
"x": 654.2078671794138,
"y": 3007.8332730358366,
"visible": false,
"alpha": 0.7501748570708636,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.166422",
"width": 145,
"height": 580,
"depth": 62,
"x": 1515.26729478608,
"y": 667.6746462656538,
"visible": true,
"alpha": 0.5278284097632665,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.692691",
"width": 2026,
"height": 81,
"depth": 6,
"x": 31.038661994488848,
"y": 1561.4564881765882,
"visible": true,
"alpha": 0.7946788424582594,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.113688",
"width": 1164,
"height": 3851,
"depth": 50,
"x": 862.3566636274454,
"y": 548.2985949594176,
"visible": true,
"alpha": 0.933668371495259,
"children": []
}
]
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.998062",
"width": 1263,
"height": 2802,
"depth": 98,
"x": 254.43297721643216,
"y": 206.44174499809515,
"visible": false,
"alpha": 0.2676580971398248,
"children": [
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.129646",
"width": 1130,
"height": 2052,
"depth": 51,
"x": 1941.5171623636932,
"y": 1222.1568378935126,
"visible": false,
"alpha": 0.4521664151696069,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.121988",
"width": 1792,
"height": 528,
"depth": 25,
"x": 387.9627201099004,
"y": 1051.8403536947008,
"visible": true,
"alpha": 0.9695919476610947,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.909806",
"width": 1238,
"height": 1649,
"depth": 10,
"x": 669.4575594902776,
"y": 4045.4506963894655,
"visible": true,
"alpha": 0.6069716885700817,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.167238",
"width": 90,
"height": 1453,
"depth": 84,
"x": 232.37551254496793,
"y": 1454.6015169551474,
"visible": false,
"alpha": 0.4871532857389258,
"children": []
}
]
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.164952",
"width": 1062,
"height": 727,
"depth": 32,
"x": 16.0735427726147,
"y": 1215.2680938555468,
"visible": true,
"alpha": 0.9129059233231852,
"children": [
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.794700",
"width": 170,
"height": 2454,
"depth": 9,
"x": 349.87155435741533,
"y": 3167.7066568115633,
"visible": false,
"alpha": 0.40982019888026855,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.667432",
"width": 536,
"height": 2420,
"depth": 45,
"x": 1669.8277957862297,
"y": 1965.4008490786605,
"visible": true,
"alpha": 0.13175486088029864,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.201531",
"width": 421,
"height": 589,
"depth": 92,
"x": 336.3999754520871,
"y": 1373.537353744788,
"visible": false,
"alpha": 0.7977267276455383,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.349199",
"width": 50,
"height": 1490,
"depth": 33,
"x": 1552.632479396323,
"y": 441.25637211188496,
"visible": false,
"alpha": 0.8817625511145861,
"children": []
},
{
"type": "Button",
"identifier": "R.id.790377",
"width": 353,
"height": 651,
"depth": 8,
"x": 953.6685637365686,
"y": 3248.3428068332987,
"visible": true,
"alpha": 0.35879148245738957,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.320377",
"width": 318,
"height": 2842,
"depth": 79,
"x": 946.7423726647316,
"y": 3384.3067257873595,
"visible": false,
"alpha": 0.2821117410615751,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.540668",
"width": 1704,
"height": 3357,
"depth": 0,
"x": 33.29884957638592,
"y": 2976.7090286946477,
"visible": true,
"alpha": 0.5198570981597361,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.329516",
"width": 1597,
"height": 1085,
"depth": 68,
"x": 240.37260866753422,
"y": 1820.653285455283,
"visible": false,
"alpha": 0.967990264693443,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.888027",
"width": 2004,
"height": 3119,
"depth": 94,
"x": 1035.3603627441344,
"y": 1475.453926011808,
"visible": true,
"alpha": 0.17841291188656538,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.325458",
"width": 1868,
"height": 2428,
"depth": 78,
"x": 1444.9645017587968,
"y": 3595.6550658467168,
"visible": false,
"alpha": 0.880314389737338,
"children": []
}
]
},
{
"type": "Button",
"identifier": "R.id.665153",
"width": 1032,
"height": 955,
"depth": 7,
"x": 136.65618077882414,
"y": 1515.8012281193892,
"visible": true,
"alpha": 0.6071619526863408,
"children": [
{
"type": "FrameLayout",
"identifier": "R.id.349703",
"width": 1598,
"height": 697,
"depth": 46,
"x": 1781.3395175982168,
"y": 3563.872569036786,
"visible": true,
"alpha": 0.09234771736074843,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.828983",
"width": 2005,
"height": 435,
"depth": 56,
"x": 1469.1206822926529,
"y": 2123.9174062877464,
"visible": false,
"alpha": 0.2646872496347811,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.21748",
"width": 912,
"height": 3925,
"depth": 24,
"x": 178.3063635666565,
"y": 339.3371088098652,
"visible": false,
"alpha": 0.23020683899609073,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.350091",
"width": 149,
"height": 3859,
"depth": 33,
"x": 1608.167613674511,
"y": 3073.6862937828955,
"visible": false,
"alpha": 0.5224412065336074,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.944975",
"width": 1878,
"height": 2484,
"depth": 3,
"x": 846.1061126402694,
"y": 2071.5818016557387,
"visible": false,
"alpha": 0.8351220854536467,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.460583",
"width": 2046,
"height": 4004,
"depth": 64,
"x": 1164.642100985412,
"y": 3088.3488737464722,
"visible": false,
"alpha": 0.21850761047852707,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.262752",
"width": 385,
"height": 2058,
"depth": 28,
"x": 1493.9376156553374,
"y": 1428.4476185521953,
"visible": true,
"alpha": 0.39211679925256016,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.1042214",
"width": 1686,
"height": 3994,
"depth": 84,
"x": 1849.7967278171943,
"y": 2010.827577651282,
"visible": false,
"alpha": 0.6299191799644446,
"children": []
}
]
}
]
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.318359",
"width": 433,
"height": 549,
"depth": 9,
"x": 730.5300224108657,
"y": 1942.562792829261,
"visible": true,
"alpha": 0.33659211098291597,
"children": [
{
"type": "Button",
"identifier": "R.id.539768",
"width": 52,
"height": 3874,
"depth": 81,
"x": 19.715719062459584,
"y": 2940.3113175755507,
"visible": false,
"alpha": 0.19400853780297111,
"children": [
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.702527",
"width": 946,
"height": 2955,
"depth": 25,
"x": 1469.8474041860065,
"y": 3275.173715271002,
"visible": true,
"alpha": 0.7440745249285952,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.865667",
"width": 621,
"height": 2817,
"depth": 25,
"x": 844.5281053088906,
"y": 1355.5425597385506,
"visible": false,
"alpha": 0.43665983433030897,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.401289",
"width": 1662,
"height": 1862,
"depth": 46,
"x": 906.1354230776585,
"y": 657.1537252956809,
"visible": true,
"alpha": 0.9821916075700733,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.318693",
"width": 498,
"height": 3699,
"depth": 85,
"x": 1066.6439543026918,
"y": 3175.551476110913,
"visible": true,
"alpha": 0.7753910727476132,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.773947",
"width": 954,
"height": 1378,
"depth": 52,
"x": 556.9653794457956,
"y": 3283.0232609110376,
"visible": false,
"alpha": 0.14126862532006101,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.1027181",
"width": 65,
"height": 3238,
"depth": 98,
"x": 1910.6686414655744,
"y": 2407.5913457938827,
"visible": false,
"alpha": 0.5206054831409593,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.861917",
"width": 1028,
"height": 867,
"depth": 24,
"x": 1815.5898295389322,
"y": 2840.032892472168,
"visible": true,
"alpha": 0.059605684396769165,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.371272",
"width": 43,
"height": 2257,
"depth": 60,
"x": 681.661645590747,
"y": 326.07185527105685,
"visible": false,
"alpha": 0.08972545779051477,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.81931",
"width": 1391,
"height": 4007,
"depth": 65,
"x": 403.6879625171946,
"y": 2732.6154031437945,
"visible": false,
"alpha": 0.7697993603973569,
"children": []
}
]
},
{
"type": "FrameLayout",
"identifier": "R.id.40110",
"width": 1327,
"height": 2882,
"depth": 62,
"x": 94.74216320438973,
"y": 2235.5089321732717,
"visible": false,
"alpha": 0.09965305480410203,
"children": [
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.218086",
"width": 91,
"height": 103,
"depth": 5,
"x": 1483.3696043145183,
"y": 1406.3190234793833,
"visible": false,
"alpha": 0.8597495379653056,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.603643",
"width": 1599,
"height": 134,
"depth": 40,
"x": 1359.2086582573158,
"y": 1176.5217200609686,
"visible": true,
"alpha": 0.09337524777175354,
"children": []
},
{
"type": "Button",
"identifier": "R.id.1028736",
"width": 220,
"height": 1890,
"depth": 88,
"x": 1432.504342386129,
"y": 3649.184431571274,
"visible": true,
"alpha": 0.1829428497577067,
"children": []
}
]
},
{
"type": "FrameLayout",
"identifier": "R.id.561196",
"width": 1526,
"height": 2324,
"depth": 14,
"x": 1795.068264192742,
"y": 3108.669586565931,
"visible": true,
"alpha": 0.8707874493520039,
"children": [
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.301048",
"width": 108,
"height": 840,
"depth": 51,
"x": 740.5928937697365,
"y": 1624.4116994085825,
"visible": false,
"alpha": 0.8940181090129733,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.653478",
"width": 1324,
"height": 1781,
"depth": 34,
"x": 287.8432709985277,
"y": 3237.9217156945024,
"visible": false,
"alpha": 0.6562602118517227,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.633118",
"width": 1844,
"height": 2255,
"depth": 94,
"x": 1140.1878657694883,
"y": 364.3885454077904,
"visible": false,
"alpha": 0.5235114530920757,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.857465",
"width": 1709,
"height": 2992,
"depth": 87,
"x": 774.9503666509906,
"y": 942.4508583904144,
"visible": true,
"alpha": 0.4180201640219624,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.234044",
"width": 1272,
"height": 2099,
"depth": 83,
"x": 938.7708927695094,
"y": 1566.6447897925418,
"visible": true,
"alpha": 0.9099037515323568,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.269425",
"width": 1926,
"height": 1299,
"depth": 3,
"x": 944.9932843049678,
"y": 952.0661194458826,
"visible": false,
"alpha": 0.5239756147589201,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.766115",
"width": 1618,
"height": 529,
"depth": 93,
"x": 561.8944138281358,
"y": 3989.842859910186,
"visible": true,
"alpha": 0.8598231066830934,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.917569",
"width": 318,
"height": 3900,
"depth": 66,
"x": 1691.762222415059,
"y": 1935.9243681846215,
"visible": false,
"alpha": 0.4526852310617707,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.361380",
"width": 1563,
"height": 3129,
"depth": 59,
"x": 1983.6412422177518,
"y": 3155.8826063691554,
"visible": true,
"alpha": 0.5763616458085179,
"children": []
}
]
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.177287",
"width": 118,
"height": 3756,
"depth": 42,
"x": 1432.4857218439943,
"y": 787.62235445937,
"visible": false,
"alpha": 0.13522575271722348,
"children": []
},
{
"type": "androidx.coordinatorlayout.widget.CoordinatorLayout",
"identifier": "R.id.363252",
"width": 423,
"height": 187,
"depth": 2,
"x": 169.07179302431155,
"y": 1535.3373471794275,
"visible": true,
"alpha": 0.39680844168039175,
"children": []
},
{
"type": "Button",
"identifier": "R.id.631656",
"width": 1600,
"height": 275,
"depth": 32,
"x": 805.6489587733445,
"y": 768.8592197274334,
"visible": false,
"alpha": 0.4247132835425196,
"children": []
},
{
"type": "Button",
"identifier": "R.id.818111",
"width": 353,
"height": 3153,
"depth": 89,
"x": 1351.4897494035833,
"y": 1226.1340566240456,
"visible": false,
"alpha": 0.41385062250824767,
"children": []
},
{
"type": "FrameLayout",
"identifier": "R.id.131014",
"width": 1201,
"height": 1031,
"depth": 95,
"x": 1501.802971298879,
"y": 190.04725027657014,
"visible": false,
"alpha": 0.24137809117130538,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.136003",
"width": 1329,
"height": 2863,
"depth": 100,
"x": 1423.2910518770657,
"y": 224.5098453551591,
"visible": true,
"alpha": 0.3165827685998214,
"children": []
}
]
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.114718",
"width": 38,
"height": 2660,
"depth": 7,
"x": 273.7559859804014,
"y": 2265.185468888463,
"visible": true,
"alpha": 0.2914036949583707,
"children": [
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.103692",
"width": 172,
"height": 28,
"depth": 79,
"x": 404.7900431067044,
"y": 1697.086475617305,
"visible": true,
"alpha": 0.8074171115471545,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.596216",
"width": 903,
"height": 2907,
"depth": 18,
"x": 1170.2042315883639,
"y": 2107.5704813465427,
"visible": false,
"alpha": 0.7112603889002214,
"children": []
},
{
"type": "androidx.appcompat.widget.Toolbar",
"identifier": "R.id.824784",
"width": 465,
"height": 3958,
"depth": 31,
"x": 1712.6463134824392,
"y": 2788.024508861098,
"visible": true,
"alpha": 0.5822409411668255,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.729404",
"width": 184,
"height": 3916,
"depth": 35,
"x": 366.4450353408745,
"y": 2836.3351464439766,
"visible": true,
"alpha": 0.7985896371277379,
"children": []
},
{
"type": "io.sentry.example.ExampleRadioButton",
"identifier": "R.id.832409",
"width": 1115,
"height": 3854,
"depth": 70,
"x": 1995.9335951646688,
"y": 476.5737797241436,
"visible": true,
"alpha": 0.8485718969750393,
"children": []
},
{
"type": "Button",
"identifier": "R.id.332636",
"width": 239,
"height": 818,
"depth": 34,
"x": 887.2331931997287,
"y": 1919.735132864586,
"visible": false,
"alpha": 0.08988055135791728,
"children": []
},
{
"type": "com.google.android.material.appbar.AppBarLayout",
"identifier": "R.id.136889",
"width": 1887,
"height": 74,
"depth": 36,
"x": 1546.9220741794534,
"y": 1796.4213050714775,
"visible": true,
"alpha": 0.564008595970263,
"children": []
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment