布局高程属性不适用于android studio设计预览

时间:2018-07-01 19:39:06

标签: android android-studio material-design

有人可以解释为什么我在android studio设计预览中看不到高程效果,但是只有在运行应用程序时才能看到吗?

以下是一些图片:

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:1)

好吧,我只是按照我们的讨论去做,所以看不到任何阴影。我正在使用AS 3.1.3。请参见下面的代码。该按钮有一些阴影,但不受高程的影响,因此我想它只是背景的9色补丁或其他内容的一部分。我没有在问题跟踪器中看到任何当前问题。

https://issuetracker.google.com/issues?q=shadow%20design

var urlGet = "http://192.168.156.38/data/static.xml"
var urlPost = "http://192.168.156.38/data/changes.xml"
var push = '<?xml version="1.0" encoding="UTF-8"?><Devices><Device><ID>EZR0116AF</ID><HEATAREA nr="4"><T_TARGET>17.0</T_TARGET></HEATAREA></Device></Devices>'

function httpGetAsync() {
    var xmlHttp = new XMLHttpRequest();
    xmlHttp.onreadystatechange = function() { 
        if (xmlHttp.readyState == 4 && xmlHttp.status == 200)
            console.log(xmlHttp.responseText);
    }
    xmlHttp.open("GET", urlGet, true);
    xmlHttp.send(null); 
}

function httpPostAsync() {
    console.log(push)
    var xmlHttp = new XMLHttpRequest();
    xmlHttp.onreadystatechange = function() { 
        if (xmlHttp.readyState == 4 && xmlHttp.status == 200)
            console.log(xmlHttp.responseText);
    }
    xmlHttp.open("GET", urlPost, true);
    xmlHttp.send(push); 
}

shadow test