WEB开发网
开发学院手机开发Android 开发 Android 成长 UI 学习之TextView + ScrollView 阅读

Android 成长 UI 学习之TextView + ScrollView

 2010-04-09 15:49:00 来源:WEB开发网   
核心提示:在android上面让TextView 过多的文字实现有滚动条,之前想简单了以为设置TextView的属性就可以实现,Android 成长 UI 学习之TextView + ScrollView,结果还是需要ScrollView配合使用,才能达到滚动条的效果有两种方式实现

android上面让TextView 过多的文字实现有滚动条,之前想简单了以为设置TextView的属性就可以实现,结果还是需要ScrollView配合使用,才能达到滚动条的效果有两种方式实现,

一种是代码写java的layout

Java代码

RelativeLayout.LayoutParams param = new RelativeLayout.LayoutParams(80,80);

//初始化滚动条控件

ScrollView scrollView =new ScrollView(this);

scrollView.setScrollContainer(true);

scrollView.setFocusable(true);

//初始化文字控件

TextView textView = new TextView(this);

textView.setHorizontallyScrolling(true);

textView.setText("走情感路线,哈哈哈, 走情感路线,哈哈哈");

scrollView.addView(textView);

main_view.addView(scrollView, param);

RelativeLayout.LayoutParams param = new RelativeLayout.LayoutParams(80,80);

//初始化滚动条控件

ScrollView scrollView =new ScrollView(this);

scrollView.setScrollContainer(true);

scrollView.setFocusable(true);

//初始化文字控件

TextView textView = new TextView(this);

textView.setHorizontallyScrolling(true);

textView.setText("走情感路线,哈哈哈, 走情感路线,哈哈哈");

scrollView.addView(textView);

main_view.addView(scrollView, param);

另一种则用layout.xml来实现

Xml代码

< ScrollView xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="fill_parent" android:layout_height="fill_parent"

android:scrollbars="vertical" android:fadingEdge="vertical" >

< TextView android:layout_width="fill_parent" android:layout_height="wrap_content"

android:id="@+id/text_view" android:textColor="#071907" android:paddingTop="5dip" / >

< /ScrollView>

Tags:Android 成长 UI

编辑录入:coldstar [复制链接] [打 印]
赞助商链接