Strange Spinner. How to fix it?

后端 未结 4 1352
离开以前
离开以前 2021-01-28 02:18

This is my code to populate the Spinner. It looks strange and ugly.

    @Override
    protected void onPostExecute(final List result) {
        Sys         


        
4条回答
  •  猫巷女王i
    2021-01-28 02:26

    (SearchTopActivity.this, android.R.layout.simple_spinner_dropdown_item, new String[]{"test1", "test2"}) change this

    android.R.layout.simple_spinner_dropdown_item to android.R.layout.simple_spinner_item
    

    refer http://developer.android.com/resources/tutorials/views/hello-spinner.html

提交回复
热议问题