123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- {
- "template_info":{
- "sdk_version":"1.0.0"
- },
- "main_template":{
- "id":"frame_layout",
- "name":"FrameLayout",
- "width":"match_parent",
- "height":"match_parent",
- "marginTop":"0",
- "flexDirection":"column",
- "background":"#ffffff",
- "alignItems":"center",
- "onTap":[{
- "type":"clickEvent"
- }],
- "children":[
- {
- "id":"flex_layout",
- "name":"FlexLayout",
- "width":"match_parent",
- "height":"match_parent",
- "marginTop":"0",
- "flexDirection":"column",
- "background":"#ffffff",
- "alignItems":"center",
- "onTap":[{
- "type":"clickEvent"
- }],
- "children":[
- {
- "id":"top_container",
- "name":"FrameLayout",
- "width":"match_parent",
- "height":"31",
- "marginLeft":"15",
- "marginTop":"15",
- "marginRight":"15",
- "children":[
- {
- "id":"dislike",
- "name":"Text",
- "width":"wrap_content",
- "height":"wrap_content",
- "text":"反馈",
- "marginLeft":"0",
- "marginTop":"0",
- "paddingLeft":"8",
- "paddingRight":"8",
- "paddingTop":"5",
- "paddingBottom":"5",
- "textColor":"#ffffff",
- "background":"#70222435",
- "textAlign":"center",
- "textSize":"14",
- "borderRadius":"14",
- "maxLines":"1",
- "visibility": "${dislike_control == 1 ? 'visible' : 'gone'}",
- "onTap":[{
- "type":"dislike"
- }]
- },
- {
- "id":"countDownSkip",
- "name":"CountDownSkip",
- "width":"82",
- "height":"30",
- "marginRight":"0",
- "marginTop":"0",
- "paddingLeft":"8",
- "paddingRight":"8",
- "paddingTop":"5",
- "paddingBottom":"5",
- "layoutGravity": "right|top",
- "textColor":"#ffffff",
- "background":"#70222435",
- "textAlign":"center",
- "textSize":"14",
- "borderRadius":"14",
- "maxLines":"1"
- }
- ]
- },
- {
- "id":"logo_image",
- "name":"Image",
- "width":"72",
- "height":"72",
- "marginTop":"60",
- "scaleType":"center",
- "src":"${icon.url}",
- "borderRadius":"10",
- "onTap":[{
- "type":"clickEvent"
- }]
- },
- {
- "id":"logo_text",
- "name":"Text",
- "width":"wrap_content",
- "height":"wrap_content",
- "text":"${source != nil ? source : app.app_name}",
- "paddingLeft":"2",
- "paddingRight":"2",
- "paddingTop":"2",
- "paddingBottom":"2",
- "marginTop":"10",
- "textColor":"#4A4A4A",
- "textAlign":"center",
- "textSize":"20",
- "maxLines":"1",
- "onTap":[{
- "type":"clickEvent"
- }]
- },
- {
- "id":"center_container",
- "name":"FrameLayout",
- "width":"match_parent",
- "height":"250",
- "marginTop":"20",
- "children":[
- {
- "id":"VideoPlaceholder",
- "name":"VideoPlaceholder",
- "width":"match_parent",
- "height":"250",
- "marginTop":"0",
- "layoutGravity": "center"
- },
- {
- "id":"bg_image",
- "name":"Image",
- "width":"match_parent",
- "height":"250",
- "marginTop":"0",
- "scaleType":"fitXY",
- "src":"${image[0].url}",
- "gravity":"center",
- "onTap":[{
- "type":"clickEvent"
- }]
- }
- ]
- },
- {
- "id":"bg_image1",
- "name":"Image",
- "width":"match_parent",
- "height":"250",
- "marginTop":"0",
- "scaleType":"fitXY",
- "src":"${image[0].url}",
- "gravity":"center",
- "visibility":"gone",
- "onTap":[{
- "type":"clickEvent"
- }]
- },
- {
- "id":"title",
- "name":"Text",
- "width":"match_parent",
- "height":"wrap_content",
- "text":"${title}",
- "marginTop":"25",
- "marginLeft":"10",
- "marginRight":"10",
- "textColor":"#4A4A4A",
- "background":"#ffffff",
- "textAlign":"center",
- "textSize":"14",
- "maxLines":"1",
- "onTap":[{
- "type":"clickEvent"
- }]
- },
- {
- "id":"description",
- "name":"RatingBar",
- "marginTop":"10",
- "width": "110",
- "size": "20",
- "height": "27",
- "alignSelf": "center",
- "highLightColor": "#F5A623",
- "score":"${app.score == null || app.score == '' ? 5:app.score}",
- "onTap":[{
- "type":"clickEvent"
- }]
- },
- {
- "id":"button",
- "name":"Text",
- "width":"match_parent",
- "height":"wrap_content",
- "text":"${button_text}",
- "paddingTop":"10",
- "paddingBottom":"10",
- "marginTop":"40",
- "marginLeft":"20",
- "marginRight":"20",
- "marginBottom":"30",
- "textColor":"#ffffff",
- "background":"#1A73E8",
- "textAlign":"center",
- "textSize":"16",
- "borderRadius":"2",
- "maxLines":"1",
- "onTap":[{
- "type":"clickEvent"
- }]
- }
- ]
- },
- {
- "id":"logo_icon",
- "name":"Image",
- "width":"44",
- "height":"17",
- "layoutGravity": "left|bottom",
- "marginLeft":"0",
- "marginBottom":"0",
- "src":"http://sf3-fe-tos.pglstatp-toutiao.com/obj/csj-sdk-static/resources/bu_logoAd.png",
- "onTap":[{
- "type":"openPolicy"
- }]
- }
- ]
- }
- }
|