我想知道何时创建class base {
constructor(table, depth) {
this._table = table;
this._depth = depth;
}
includeFK(table, depth, includes) {
return new Promise((resolve, reject) => {
if (depth <= this._depth) {
for (var att in table.tableAttributes) {
table.belongsTo(m, {
as: m.name,
foreignKey: att
})
includes.push({
model: m
});
}
}
Promise.all(
Object.keys(table.associations).forEach(tbl => {
this.includeFK(table.associations[tbl].target, depth + 1, includes);
}
)).then(results => {
resolve(true)
});
} else {
resolve(true);
}
});
all(query) {
return new Promise((resolve, reject) => {
var tmp = this;
var includes = [];
Promise.all([
this.includeFK(tmp._table, 1, includes),
this.includeLang()
]).then(function() {
tmp._table.findAll({
include: includes
}).then(function(dbStatus) {
resolve(dbStatus);
});
});
});
}
}
布局。我需要对项目视图执行操作,因为我需要知道何时将布局绘制到屏幕上。我需要获取已创建视图的ID。
有没有办法知道何时完成?
编辑(精确):
ListView
无效后立即致电,ListView,notifyDataSetChanged
仍会返回ListView.getChildCount
。答案 0 :(得分:1)
适配器需要为列表的每一行创建布局。 ListView
实例在适配器上为每个数据元素调用getView()
方法。在此方法中,适配器创建行布局并将数据映射到布局中的视图。
在getView()
方法中,您将扩展基于XML的布局,然后根据此行的Java对象设置各个视图的内容。要扩展XML布局文件,您可以使用LayoutInflator
系统服务。
以下是Listveiw
的示例适配器。
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.TextView;
public class MySimpleArrayAdapter extends ArrayAdapter<String> {
private final Context context;
private final String[] values;
public MySimpleArrayAdapter(Context context, String[] values) {
super(context, -1, values);
this.context = context;
this.values = values;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rowView = inflater.inflate(R.layout.rowlayout, parent, false);
TextView textView = (TextView) rowView.findViewById(R.id.label);
ImageView imageView = (ImageView) rowView.findViewById(R.id.icon);
textView.setText(values[position]);
// change the icon for Windows and iPhone
String s = values[position];
if (s.startsWith("iPhone")) {
imageView.setImageResource(R.drawable.no);
} else {
imageView.setImageResource(R.drawable.ok);
}
return rowView;
}
}
以下是rawlayout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/icon"
android:layout_width="22px"
android:layout_height="22px"
android:layout_marginLeft="4px"
android:layout_marginRight="10px"
android:layout_marginTop="4px"
android:src="@drawable/ic_launcher" >
</ImageView>
<TextView
android:id="@+id/label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@+id/label"
android:textSize="20px" >
</TextView>
</LinearLayout>
答案 1 :(得分:1)
为了从视图中获取所有ID,我尝试了以下
private List<View> mChildren;
我已宣布List
View
将包含所有孩子,然后我设法让所有孩子都使用以下代码段
ViewTreeObserver obs = mListView.getViewTreeObserver();
obs.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
for(int index = 0; index<((ViewGroup)mListView).getChildCount(); ++index) {
View nextChild = ((ViewGroup)mListView).getChildAt(index);
if(!mChildren.contains(nextChild)){
mChildren.add(nextChild); //New Child to add
}
}
}
});
然后你可以mChildren
包含所有儿童观点。除此之外,您还可以查看 onFinishInflate 。希望它有帮助:)
正如我和托马斯在聊天中讨论的那样,我回忆起同时onViewAdded
(来自API 23)也很有用。