在圖庫視圖onItemSelected我打電話的setText該修改文本的一個TextView那主要佈局的一部分:設置文本原因滾動搶購
@Override
public void onItemSelected(EcoGalleryAdapterView<?> parent, View view, int position, long id) {
// --- run asyncTask to update gallery view here
TextView myTextView = (TextView) findViewById(R.id.myTextView);
myTextView.setText("position is: ": position);
}
如果我失去了一切,因爲它是和只是刪除myTextView.setText
畫廊按預期工作,但如果我保留它,那麼當滾動畫廊快速以一種醜陋的方式快速捕捉到選定的位置。可能是什麼問題?
你可以發佈你的活動的佈局xml嗎?不知道這是否會有所幫助,但看看向TextView添加'android:focusable =「false」'是否有所幫助。 – Vikram
當你問一個問題時,如果有人問任何問題,請儘量去那裏。你能向我們展示包含R.id.myTextView的佈局嗎? –