由fireAdapter = new FirebaseListAdapter<String>(
this,
String.class,
android.R.layout.simple_list_item_1,
mRootRef.child("events").child("users") //here I have all user_id that I want to retrieve details for
) {
@Override
protected void populateView(View v, String model, int position) {
//the string "model" will now have a user_id
TextView userName = (TextView)v.findViewById(android.R.id.text1); //I want to populate this field
String usernameString;
//How do I get to retrieve the username from user_id into this variable?
userName.setText(usernameString);
}
};
文件夹结构生成的项目不按功能分组,而是按类型分组。
就是这样的
Visual Studio 2015 > Apache Cordova Apps > Ionic JavaScript
我希望它像这样
www
--css
----page1.scss
----page2.scss
--js
----page1.controller.js
----page2.controller.js
--templates
----page1.html
----page2.html
我对Angular相当新,改变路线将是一个真正的挑战。
我只是想知道现有的VS2015 Ionic项目具有逐个功能。或者有关改变项目的旅程的任何提示。
我已经有一个正在运行的Ionic,但我无法使用www
--pages
----page1
------page1.controller.js
------page1.html
------page1.scss
----page2
------page2.controller.js
------page2.html
------page2.scss
在Windows Phone上调试它,然后在Windows手机上调试。该项目是从这里分叉的:https://github.com/MaximAbramchuck/ionic-gulp-es6-starter-kit。
我也做不到VS2015 > New > Project From Existing COde
。