使用Ext.get("xxx").fadeOut(...)
我可以使用html
淡出Ext.get("xxx").fadeOut(...)
元素,但使用Sencha Touch,如果我执行相同的操作fadeOut
,它会告诉我{ {1}}是undefined
。我做错了吗?
答案 0 :(得分:0)
根据您获取组件或dom元素的参考位置,您可以使用类似的内容。
static RealmResults<RealmAcronym> realmResults;
Realm realmDB;
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
realmResults = realmDB.allObjects(RealmAcronym.class);
}
Etc等