expandListAdpater によって入力された Textviews の ArrayList があります。私の目標は、textViews の値を変更することですが、何らかの理由で一度しか機能しません。さまざまなタイマーを試し、ハンドラーを UI スレッドに関連付けようとしましたが、機能しません。これが私のコードです。助けてください!リストアダプターを展開…</p>
TextView mytexts= ButterKnife.findById(view, R.id.mytexts);
mySubSections.add(new ConstructForKeepingTextviewsForUpdate(mytexts));
// I got about 10 more textviews , this is an example
public class ConstructForKeepingTextviewsForUpdate {
private TextView getTextviewToBeUpdated() {
return textviewToBeUpdated;
}
public void SetVal(String t){
getTextviewToBeUpdated().setText(t);
}
TextView textviewToBeUpdated;
public ConstructForKeepingTextviewsForUpdate(TextView textviewToBeUpdated) {
this.textviewToBeUpdated = textviewToBeUpdated;
}
}
in onCreate I run this
private void pleaseWork(){
new Timer().schedule(new TimerTask() {
@Override
public void run() {
runOnUiThread(new Runnable() {
public void run() {
updateNumbersInLoop();
}
});
}
}, 0, 1000);
}
public static void updateNumbersInLoop() {
for (ConstructForKeepingTextviewsForUpdate subSec : mySubSections){
String datext = dbHelper.getValue (computedValue);
subSec.SetVal(datext);
}
}
//The getValue function works , I can see the correct value, but the settext works only once, at the first time.