2

私はAndroid 2.2+用に構築しています

ListViewメソッドを使用しsmoothScrollToPosition(0)てリストの一番上にスクロールします。ほとんどの場合は機能しますが、一部のリスト項目の高さが可変になると、リスト項目smoothScrollToPosition(0)が長くなると停止します。

バグですか?または私は何か間違ったことをしていますか?

問題を生成するサンプルActivityコードは次のとおりです。

public class SimpleListViewActivity extends Activity {
    private ListView mainListView ;
    private Button btnScrollToTop ;
    private ArrayAdapter<String> listAdapter ;


    @Override
    public void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
         setContentView(R.layout.main);
         mainListView = (ListView) findViewById( R.id.mainListView );

         // some test data
         String[] planets = new String[] {    "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n24\n25\n26\n27\n28\n29\n30\n31\n32\n33\n34\n35\n36\n37\n38\n39\n40", 
                                  "Mercury","Venus", "Earth", "Mars",
                                  "1\n2\n3\n4\n5\n6\n7\n8\n9\n10",
                                  "Jupiter", "Saturn","Uranus",
                                  "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n24\n25\n26\n27\n28\n29\n30\n31\n32\n33\n34\n35\n36\n37\n38\n39\n40",
                                  "Neptune",
                                  "Ceres",
                                  "Pluto",
                                  "Haumea",
                                  "Makemake",
                                  "Eris"
                                };  
         ArrayList<String> planetList = new ArrayList<String>();
         planetList.addAll( Arrays.asList(planets) );

         listAdapter = new ArrayAdapter<String>(this, R.layout.simplerow, planetList);
         mainListView.setAdapter( listAdapter );    


         //scroll to top
         btnScrollToTop = (Button) findViewById( R.id.btn_scroll_to_top);
         btnScrollToTop.setOnClickListener(new OnClickListener(){

              @Override
              public void onClick(View v) {
                mainListView.smoothScrollToPosition(0);
              }

        });
    }
}

xml メイン レイアウト:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">

    <Button
      android:id="@+id/btn_scroll_to_top"
      android:text="Scroll To Top"
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content"
      android:layout_margin="10dp" 
     />

    <ListView android:layout_width="fill_parent" 
       android:layout_height="fill_parent" 
       android:id="@+id/mainListView">
    </ListView>

</LinearLayout>

リスト行のレイアウト:

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
   android:id="@+id/rowTextView" 
   android:layout_width="fill_parent" 
   android:layout_height="wrap_content"
   android:padding="10dp"
   android:textSize="16sp" >
</TextView>
4

3 に答える 3

0

Android ICS と Jelly bean の既知のバグであることがわかりました。 http://code.google.com/p/android/issues/detail?id=37278

今のところ、次の回避策があります。スクロール中に顕著な速度変化があるため、機能しますが理想的ではありません

上にスクロールするコード:

ScrollToTopListener scrollToTopListener=new ScrollToTopListener();
mainListView.setOnScrollListener(scrollToTopListener);
scrollToTopListener.scrollToTop();
messagesList.smoothScrollToPosition(0);

ScrollToTopListener クラス:

public  class ScrollToTopListener implements OnScrollListener {

     private boolean scrollToTop=false;

     public  ScrollToTopListener(){

     }


     public void scrollToTop(){
         scrollToTop=true;
     }


    @Override
    public void onScroll(AbsListView view, int firstVisibleItem,
         int visibleItemCount, int totalItemCount) {


        if(scrollToTop){
           if(firstVisibleItem != 0) {
               view.smoothScrollToPosition(0);
               }  
               else {
                       scrollToTop=false;
               }
        }

    }

   @Override
   public void onScrollStateChanged(AbsListView view, int scrollState) {
      if(scrollState == SCROLL_STATE_TOUCH_SCROLL){
         scrollToTop=false;
     }

   }
}
于 2013-10-23T23:36:32.107 に答える