[Android]為Spinner填充資料後設定預設值的問題

來源:互聯網
上載者:User

前言

   為Spinner適配完資料後需要設定其預設選項,但是發現直接setSelection(int position)有時候不管用,開啟選項又發現已經選中了,但是顯示出來的選項又始終預設第一個,本文為文章1的中文簡單譯本。

 

文章

  1.  Using spinner.setSelection & finding the spinner doesn't show the selected item when closed?

 

聲明

  歡迎轉載,但請保留文章原始出處:)

    部落格園:http://www.cnblogs.com

    農民伯伯: http://www.cnblogs.com/over140/

 

本文

  問題很奇怪,此外還發現適配完資料後會預設選中第一個,並且這個預設選中第一個的操作並不是馬上執行的,而是一段時候後再執行,並觸發OnItemSelectedListener事件。下面直奔主題:

  舊代碼:

        spinner.setAdapter(adapter);
        spinner.setSelection(2);

  新代碼:

        spinner.setAdapter(adapter);
        spinner.setSelection(2,true);

  在來看setSelection有兩個參數的函數重載的說明:

setSelection(int position, boolean animate)

  英文:Jump directly to a specific item in the adapter data.

  中文:直接跳到資料配接器中指定項。

 

  以下是兩個函數的原始碼:

    /**
     * Jump directly to a specific item in the adapter data.
     */
    public void setSelection(int position, boolean animate) {
        // Animate only if requested position is already on screen somewhere
        boolean shouldAnimate = animate && mFirstPosition <= position &&
                position <= mFirstPosition + getChildCount() - 1;
        setSelectionInt(position, shouldAnimate);
    }
    

    @Override
    public void setSelection(int position) {
        setNextSelectedPositionInt(position);
        requestLayout();
        invalidate();
    }

 

結束

  看起來像是專門準備了一個函數在資料適配(填充)完後設定預設值的,可惜API文檔還沒有翻譯到這裡,不然少走這個彎路了

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.