我试图扫描一个dynamodb表,查看价格在1到13之间的所有条目,
LayoutParams
但是当我测试它时,我总是得到以下错误。我绝对将'price'作为我表中的数字属性,并且也设置了IAM。
int[] locations = new int[2];
b1.getLocationInWindow(locations);
Button a = new Button(this);
a.setLayoutParams(b1.getLayoutParams());
a.setX(locations[0]);
a.setY(locations[1]);
a.setText("new Button");
frameLayout.addView(a);
答案 0 :(得分:2)
您正在尝试引用data.Item
undefined
。扫描操作返回列表,而不是单个项目。该列表将通过data.Items
如有疑问,请阅读the documentation。或者您可以打印出整个data
响应,以查看回复的确切格式。