- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果解释得不好,我深表歉意,我自己也很难理解。如果您指出任何您不理解的地方,我会尽力纠正任何问题。好的,我们开始吧。
几个类(class)。 (D&D sheet,sheet有武器用户可以装备,这是关于装备存储在列表中的所述武器)
到目前为止,我收集到的是,当我创建一个新的 attackListViewContentAdapter 时,它会以快速且持续的速度循环。如此之多,以至于屏幕对我触摸任何小部件都没有反应。我做了一些事情,比如每次通过时记录一个数字,这样它就会一次又一次地显示出来。如果您需要这方面的信息,我可以向您展示我将日志放在哪里以及当我添加一个额外的 View (行)时我的 Logcat 中显示的内容。
我相信这与不断被触发的 onChangedListener 有关,即使我找到了原因,然后我如何进入可以创建新 View 并拥有监听器的阶段,以便它可以记录更改。
请注意,为了空间的利益,我将使用缩写代码。我忽略了不相关的对话框和小部件之类的东西。因此,如果它看起来缺少某些东西或者您需要查看类,它可能在我在每个类上方链接的文件中。
public class CombatFragment extends Fragment {
@BindView(R.id.lv_attack_spellcasting_content)
ListView lv_attack_spellcasting_title;
@Nullable
@Override
public View onCreateView(final LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.content_combat, container, false);
RealmList<Weapon> weaponList = sheet.getWeaponList();
final AttackListViewContentAdapter attackListViewContentAdapter = new AttackListViewContentAdapter(getActivity(), sheet, realm, weaponList);
weaponList.addChangeListener(new RealmChangeListener<RealmList<Weapon>>() {
@Override
public void onChange(RealmList<Weapon> weapons) {
/* Gives the adaptor a kick to know that the weapon realm list has changed */
attackListViewContentAdapter.notifyDataSetChanged();
loopOnChanged++;
}
});
lv_attack_spellcasting_title.setAdapter(attackListViewContentAdapter);
playerInit();
return rootView;
}
// This is a fake method, this is just to show that the .add is in it's own method which is triggered by a button press and not in onCreate
public void buttonPress() {
sheet.getWeaponList().add(realm.createObject(Weapon.class));
}
} `
public class AttackListViewContentAdapter extends ArrayAdapter<Weapon> {
public AttackListViewContentAdapter(Context context, Sheet sheet, Realm realm, List<Weapon> weaponList) {
super(context, 0, weaponList);
this.sheet = sheet;
this.realm = realm;
}
@Override
@NonNull
public View getView(int position, View convertView, ViewGroup parent) {
if (convertView == null)
//Because you're returning the view (AttachToRoot is false) the ArrayAdaptor (This class) will handle adding the view to the list.
convertView =
LayoutInflater.from(getContext()).inflate(R.layout.attack_list_item, parent, false);
return convertView;
}
}
public class Weapon extends RealmObject {
@PrimaryKey
int weaponID;
//properties, set get methods etc.
}
public class Sheet extends RealmObject {
@PrimaryKey
private int sheetID;
private RealmList<Weapon> weaponList;
public RealmList<Weapon> getWeaponList() {
return weaponList;
}
public void setWeaponList(RealmList<Weapon> weaponList) {
this.weaponList = weaponList;
}
}
<ListView
android:id="@+id/lv_attack_spellcasting_content"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:columnCount="7"
android:rowCount="1" />
里面什么都没有
最佳答案
您的问题是由于 AttackListViewContentAdapter
类中的微调器小部件初始化不正确所致。
setOnItemSelectedListener
之前设置微调器选择。onChange
和 onItemSelected
方法之间的无限循环。我的意思是,您的微调器 onItemSelected
回调,执行 Realm 交易,然后,这些交易触发您的 onChange
回调,最后,您的 onChange
回调调用 notifyDataSetChanged()
使循环再次开始进入无限循环。要解决您的问题,您应该按照 AttackListViewContentAdapter.java 中的后续步骤操作:
A) 从 addWeaponToUI()
方法中删除以下行:
private void addWeaponToUI() {
et_name_value.setText(weapon.getWeaponName());
np_damage_number_of_die_value.setValue(weapon.getWeaponDamageNumberOfDie());
SheetEnum.Ability ability = SheetEnum.Ability.getEnumValue(weapon.getWeaponAbilityBonusInt());
tv_attack_bonus_value.setText(String.valueOf(sheet.getAbilityBonus(ability)));
// REMOVE below lines!
//s_damage_die_type_value.setSelection(weapon.getWeaponDamageDieTypeInt());
//s_damage_type_value.setSelection(weapon.getWeaponDamageTypeInt());
//s_ability_bonus_value.setSelection(weapon.getWeaponAbilityBonusInt());
}
B) 在 setOnItemSelectedListener()
之前调用微调器 setSelection()
,然后检查所选项目是否不等于所选位置以避免无限循环:
ArrayAdapter<CharSequence> damageDieTypeAdapter = ArrayAdapter.createFromResource(getContext(), R.array.die_type, android.R.layout.simple_spinner_dropdown_item);
s_damage_die_type_value.setAdapter(damageDieTypeAdapter);
//Set selection before listener
s_damage_die_type_value.setSelection(weapon.getWeaponDamageDieTypeInt());
s_damage_die_type_value.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parent, View v, final int position, long id) {
//Check selected position is not equal to current position to avoid an infinite loop
if (position != weapon.getWeaponDamageDieTypeInt()) {
String[] value = getContext().getResources().getStringArray(R.array.die_type);
realm.executeTransaction(new Realm.Transaction() {
@Override
public void execute(Realm realm) {
weapon.setWeaponDamageDieType(position);
}
});
}
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
}
});
C) 为 s_damage_type_value
和 s_ability_bonus_value
微调器重复步骤 B
关于java - Realm 不断调用 onChange addChangeListener,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48215513/
如果解释得不好,我深表歉意,我自己也很难理解。如果您指出任何您不理解的地方,我会尽力纠正任何问题。好的,我们开始吧。 几个类(class)。 (D&D sheet,sheet有武器用户可以装备,这是关
我正在使用 Swing 制作一个简单的 GUI,但是当我向 JSlider 添加更改监听器时,出现以下运行时错误: Exception in thread "main" java.lang.NullP
本文整理了Java中org.jfree.data.xy.XYIntervalSeries.addChangeListener()方法的一些代码示例,展示了XYIntervalSeries.addCha
本文整理了Java中com.tc.admin.common.XTabbedPane.addChangeListener()方法的一些代码示例,展示了XTabbedPane.addChangeListe
本文整理了Java中org.jfree.data.xy.YIntervalSeries.addChangeListener()方法的一些代码示例,展示了YIntervalSeries.addChang
全部: 我是 React 的新手。当我关注它的 TodoMVC example ,有一个问题让我很困惑: 在 TodoApp 组件内部,它使用 TodoStore.addChangeListener
在 Realm addchangelistener 中,我们可以知道在哪个 position 列表中发生了更改,并且元素是否从列表中inserted/updated/removed ?? 最佳答案 c
我将此行视为对此处另一个问题的回答: “componentWillMount 应该是 componentDidMount,否则你会在节点中泄漏事件发射器。” 我也不是很懂。有人可以更详细地解释一下吗?
我遇到了这种类型的错误: Fatal Exception: java.lang.IllegalStateException: Cannot create asynchronous query whil
本文整理了Java中org.eclipse.core.databinding.observable.list.WritableList.addChangeListener()方法的一些代码示例,展示了
我是一名优秀的程序员,十分优秀!