答案 0 :(得分:2)
搜索此问题后,我建议您将字体更改为其他字体。但有一些方法可以防止这个问题:
你可以用这个:
- (void)textFieldDidEndEditing:(UITextField *)textField
{
[textField layoutIfNeeded]; //Fixes iOS 9 text bounce glitch
//...other stuff
}
请查看此链接:
Text in UITextField moves up after editing (center while editing)
答案 1 :(得分:0)
尝试将字体更改为Arial,帮帮我。
HashMap<Integer,boolean> operations = new HashMap<>();
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
if(operations.contains(position){
//Do nothing..
}
else
{
//Do operations...
operations.put(position,true);
}
}