Android ScrollView的使用
2010-10-12 02:20:00 来源:本站整理核心提示:LinearLayout.LayoutParams.WRAP_CONTENT);mLayout.addView(tView, params);//添加一个TextView控件Button button = new Button(Test_ScrollView.this);//定义一个Buttonbutton.setTe
LinearLayout.LayoutParams.WRAP_CONTENT);
mLayout.addView(tView, params);//添加一个TextView控件
Button button = new Button(Test_ScrollView.this);//定义一个Button
button.setText("Button" + index);//设置Button的文本信息
button.setId(index++);
mLayout.addView(button, params);//添加一个Button控件
mHandler.post(mScrollToButton);//传递一个消息进行滚动
}
};
private Runnable mScrollToButton = new Runnable() {
@Override
public void run() {
int off = mLayout.getMeasuredHeight() - sView.getHeight();
if (off > 0) {
sView.scrollTo(0, off);//改变滚动条的位置
}
}
};
}
此示例中一个TextView和一个Button来实现自动滚动,当我们点击Button0时自动产生多个类似的项,如果一屏显示不完,则通过 ScrollView来显示。
Tags:Android ScrollView 使用
编辑录入:爽爽 [复制链接] [打 印]更多精彩
赞助商链接