私は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>