A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 狂飙的yellow.co 中级黑马   /  2014-7-19 09:24  /  762 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文





案例
布局

  1. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  2.     android:layout_width="match_parent"
  3.     android:layout_height="wrap_content"
  4.     >
  5.     <!-- ScrollView 将布局包在里面 -->
  6.     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  7.     xmlns:tools="http://schemas.android.com/tools"
  8.     android:id="@+id/content"
  9.     android:layout_width="match_parent"
  10.     android:layout_height="wrap_content"
  11.     android:orientation="vertical"
  12.     tools:context=".MainActivity" >


  13. </LinearLayout>
  14. </ScrollView>
复制代码


MainActivity.java
  1. package com.example.day07_19_scrollview;

  2. import android.app.Activity;
  3. import android.os.Bundle;
  4. import android.view.Menu;
  5. import android.widget.Button;
  6. import android.widget.LinearLayout;
  7. import android.widget.LinearLayout.LayoutParams;

  8. public class MainActivity extends Activity {
  9.         private LinearLayout content;
  10.         private LinearLayout.LayoutParams style;
  11.         //定义Btn中的数据显示
  12.         private String [] dates = new String[]{<span style="line-height: 1.5;">"</span>聪哥QQ:717350389<span style="line-height: 1.5;">",</span><span style="line-height: 1.5;">"美女","金钱","性","人生","梦想","真理","爱情","亲情","友情","黄聪","张焕焕","李庆怡","贺小军","张萌","陶拓","狂飙的yellowcong"};</span>
复制代码

效果图


0 个回复

您需要登录后才可以回帖 登录 | 加入黑马