我有这种风格的布局
在这个设计中,所有箭头在红色方块中滑动我在橙色方块中有列表视图我有滑块
如何用红色箭头滚动我的布局显示
最好的 xml 设计
滚动列表视图时与此相同或隐藏滑块?
如果您想滚动整个屏幕,您可以ScrollView
在所有内容周围放置 a,其中包括 theSlider
和ListView
部分
listView1.setOnTouchListener(new OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
// TODO Auto-generated method stub
if (event.getAction() == MotionEvent.ACTION_MOVE) {
listView1.scrollBy(0, 1);
}
return false;
}
});