我有一個愚蠢的問題,使用處理程序類更新TextView
中的文本。我在Google地圖中設置了自定義信息窗口。TextView不更新
mMap.setInfoWindowAdapter(new GoogleMap.InfoWindowAdapter() {
@Override
public View getInfoWindow(Marker marker) {
return null;
}
@Override
public View getInfoContents(final Marker marker) {
//setting marker as final***
View v = getLayoutInflater().inflate(R.layout.my_layout, null);
TextView name = (TextView) v.findViewById(R.id.name);
final TextView status = (TextView) v.findViewById(R.id.status);
for(MyItem mi : myItems){
if(mi.getName().equals(marker.getTitle())){
name.setText(mi.getName()); //This one updates normaly
Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
//this one sets the text, but doesnt update on UI
status.setText("Text");
//Here I call my update text function
updateTv(status, "Text");
//Refreshing the window***
marker.showInfoWindow();
}
}, 5000);
break;
}
}
return v;
}
});
}
TextView
「名」正常更新,而「狀態」 TextView
只更新其內容,而不是在屏幕上直觀地更新。我試過無效,runOnUiThread()
,但似乎沒有任何工作。我知道解決方案可能非常明顯,但我沒有看到它。
非常感謝您的幫助!
編輯
以下是我試過runOnUiThread()。
public void updateTv(final TextView tv, final String s){
runOnUiThread(new Runnable() {
@Override
public void run() {
tv.setText(s);
tv.invalidate();
}
});
}
我的XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="Large Text"
android:id="@+id/name"
android:layout_gravity="center"
android:gravity="center_horizontal"
android:padding="10dp"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="..."
android:id="@+id/status"
android:gravity="center_horizontal"/>
</LinearLayout>
SOLUTION
我通過調用上面的代碼註釋,並與***簽署命令刷新我的窗口。我要感謝「clownba0t」
你應該在主線程中更新UI元素。顯示你說你嘗試runOnUiThread()時使用的代碼。 – HelloSadness
你介意發佈'R.layout.my_layout'嗎? – clownba0t
你的佈局xml?由於名稱textView正在工作,它可能與更新機制無關,所以映射可能有問題! –