0

我正在尝试在 Android View.java 中添加一个字符串属性,并使 ViewServer 可以转储视图并获取它。

这是我写的,但它不起作用。

protected String mTestinfo = "myTestInfo";
/** {@hide} */
@ViewDebug.ExportedProperty
public String getTestinfo(){
    return mTestinfo;
}

有人可以帮忙吗?

4

1 回答 1

1

Have you tried changing it to:

public String getTestinfo(){
    return mTestinfo;
}

with a capital 'S'?

于 2016-02-01T12:57:01.337 回答