android 实现ScrollView自动滚动的实例代码
有时候需要动态添加数据,屏幕显示满了,数据需要滚动展示。这里主要弄懂scrollTo(0, off)方法的含义喊用法。
含义不说了,大概意思就这样。
下面来看他的用法:
private void searchResultShow() {
TextView textView = new TextView(AFSearchActivity.this);
textView.setText("Text View ");
LinearLayout.LayoutParams p = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.MATCH_PARENT,
LinearLayout.LayoutParams.WRAP_CONTENT
);
textView.setPadding(30, 15, 0, 15);
textView.setTextSize(30);
textView.setTextColor(Color.WHITE);
//增加一个TextView到线性布局中
layout.addView(textView, p);
ImageView imageView = new ImageView(AFSearchActivity.this);
imageView.setImageResource(R.drawable.im_dottend_line);
//增加一个ImageView到线性布局中
layout.addView(imageView, p);
if(sName == null || sName.equals("")){
textView.setText("-");
}else{
textView.setText(sName);
sName = "";
mHandler.post(mScrollToBottom);
}
}
private Runnable mScrollToBottom = new Runnable()
{
@Override
public void run()
{
int off = layout.getMeasuredHeight() - nameScroll.getHeight();
if (off > 0)
{
nameScroll.scrollTo(0, off);
}
}
};
相关文章
Android Jetpack导航组件Navigation创建使用详解
这篇文章主要为大家介绍了Android Jetpack导航组件Navigation创建及使用详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2022-11-11Android基于google Zxing实现各类二维码扫描效果
这篇文章主要介绍了Android基于google Zxing实现各类二维码扫描效果的相关资料,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2016-02-02Flutter悬浮按钮FloatingActionButton使用详解
本文主要介绍了Flutter悬浮按钮FloatingActionButton使用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2021-07-07
最新评论