❶ android 如何讓多條數據在一個textview中垂直滾動顯示
Android中我們為了實現文本的滾動可以在ScrollView中嵌入一個TextView,其實TextView自己也可以實現多行滾動的,畢竟ScrollView必須只能有一個直接的子類布局。只要在layout中簡單設置幾個屬性就可以輕松實現
<TextView
android:id="@+id/tvCWJ"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"<!--垂直滾動條-->
android:singleLine="false"<!--實現多行-->
android:maxLines="15"<!--最多不超過15行-->
android:textColor="#FF0000"
/>
當然我們為了讓TextView動起來,還需要用到TextView的setMovementMethod方法設置一個滾動實例,代碼如下:
TextViewtvAndroid123=(TextView)findViewById(R.id.tvCWJ);
tvAndroid123.setMovementMethod(ScrollingMovementMethod.getInstance());//Android開發網提示相關的可以查看SDK中android.text.method分支了解更多
❷ Android中實現TextView垂直滾動,像跑馬燈那樣,但是垂直的
要實現垂直滾動的,你可以用scrollview這個組件,不需要什麼代碼,只需要在xml文件,將textview嵌套進scrollview進去就行了。
<ScrollView android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content"
............//自己定義你的TextView組件
><TextView>
<ScrollView>
❸ android textview 怎麼實現文字滾動
android:focusable="true" 加上這句 TextView只有是焦點組件時,才會滾動。 如果你不想是焦點也能滾動的話,那應該是個走馬燈控制項了,我也研究下看看走馬燈得如何實現。