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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 张然龙 金牌黑马   /  2014-7-15 20:08  /  1957 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

最近翻以前写的代码,无意间看到这个份,回忆起来当时写的时候还是思考了一番,所以决定把代码和设计思路给大家分享一下:


首先还是上几张图:






由于大学的课程不像中小学是长度节次是固定的,所以就没办法用表格视图
于是我在研究了之后决定用ScrollView中再嵌套一个HorizontalScrollView来实现
这样就可以上下左右滑动了。


然后在HorizontalScrollView中再添加一个水平的LinearLayout
水平的LinearLayout里面再添加7个竖直的LinearLayout(周一至周日)'
每个LinearLayout再添加N个RelativeLayout来显示课程


主要代码:

  1. <font size="2" face="宋体"><span style="font-size:14px;">public class TableDemoActivity extends Activity {  
  2.     private int colors[] = {  
  3.         Color.rgb(0xee,0xff,0xff),  
  4.         Color.rgb(0xf0,0x96,0x09),  
  5.         Color.rgb(0x8c,0xbf,0x26),  
  6.         Color.rgb(0x00,0xab,0xa9),  
  7.         Color.rgb(0x99,0x6c,0x33),  
  8.         Color.rgb(0x3b,0x92,0xbc),  
  9.         Color.rgb(0xd5,0x4d,0x34),  
  10.         Color.rgb(0xcc,0xcc,0xcc)  
  11.     };  
  12.       
  13.     /** Called when the activity is first created. */  
  14.     @Override  
  15.     public void onCreate(Bundle savedInstanceState) {  
  16.         super.onCreate(savedInstanceState);  
  17.         setContentView(R.layout.main);  
  18.         //分别表示周一到周日  
  19.         LinearLayout ll1 = (LinearLayout)findViewById(R.id.ll1);  
  20.         LinearLayout ll2 = (LinearLayout)findViewById(R.id.ll2);  
  21.         LinearLayout ll3 = (LinearLayout)findViewById(R.id.ll3);  
  22.         LinearLayout ll4 = (LinearLayout)findViewById(R.id.ll4);  
  23.         LinearLayout ll5 = (LinearLayout)findViewById(R.id.ll5);  
  24.         LinearLayout ll6 = (LinearLayout)findViewById(R.id.ll6);  
  25.         LinearLayout ll7 = (LinearLayout)findViewById(R.id.ll7);  
  26.         //每天的课程设置  
  27.         setClass(ll1, "", "", "", "", 2, 0);  
  28.         setClass(ll1, "windows编程实践", "国软  4-503", "1-9周,每一周", "9:50-11:25", 2, 1);  
  29.         setNoClass(ll1, 3, 0);  
  30.         setClass(ll1, "概率论与数理统计", "国软  4-304", "1-15周,每一周", "14:55-17:25", 3, 2);  
  31.         setNoClass(ll1, 1, 0);  
  32.         setClass(ll1, "人文化学", "一区 3-404", "3-13周,每一周", "19:00-20:30", 2, 4);  
  33.         setNoClass(ll1, 1, 0);  
  34.          
  35.         setClass(ll2, "大学英语", "国软 4-302", "1-18周,每一周", "8:00-9:35", 2, 3);  
  36.         setClass(ll2, "计算机组织体系与结构", "国软 4-204", "1-15,每一周", "9:50-12:15", 3, 5);  
  37.         setNoClass(ll2, 3, 0);  
  38.         setClass(ll2, "团队激励和沟通", "国软 4-204", "1-9周,每一周", "15:45-17:25", 2, 6);  
  39.         setNoClass(ll2, 1, 0);  
  40.         setClass(ll2, "中国近现代史纲要", "3区 1-327", "1-9周,每一周", "19:00-21:25", 3, 1);  
  41.          
  42.         setNoClass(ll3, 2, 0);  
  43.         setClass(ll3, "中国近现代史纲要", "3区 1-328", "1-9周,每一周", "9:50-12:15", 3, 1);  
  44.         setNoClass(ll3, 1, 0);  
  45.         setClass(ll3, "体育(网球)", "信息学部 操场", "6-18周,每一周", "14:00-15:40", 2, 2);  
  46.         setNoClass(ll3, 3, 0);  
  47.         setClass(ll3, "当代政治与经济", "3区 1-501", "1-7周,每一周", "19:00-21:25", 3, 3);  
  48.          
  49.         setClass(ll4, "计算机组织体系与结构", "国软 4-204", "1-15,每一周", "8:00-9:35", 2, 5);  
  50.         setClass(ll4, "数据结构与算法", "国软 4-304", "1-18周,每一周", "9:50-12:15", 3, 4);  
  51.         setNoClass(ll4, 1, 0);  
  52.         setClass(ll4, "面向对象程序设计(JAVA)", "国软 1-103", "1-18周,每一周", "14:00-16:30", 3, 5);  
  53.         setNoClass(ll4, 2, 0);  
  54.         setNoClass(ll4, 3, 0);  
  55.          
  56.         setClass(ll5, "c#程序设计", "国软 4-102", "1-9周,每一周", "8:00-9:35", 2, 6);  
  57.         setClass(ll5, "大学英语", "国软 4-302", "1-18周,每一周", "9:50-11:25", 2, 3);  
  58.         setNoClass(ll5, 2, 0);  
  59.         setClass(ll5, "基础物理", "国软 4-304", "1-18周,每一周", "14:00-16:30", 3, 1);  
  60.         setNoClass(ll5, 2, 0);  
  61.         setClass(ll5, "手机应用分析与创意", "1区 5-103", "1-7周,每一周", "19:00-21:2", 3, 2);  
  62.          
  63.         setNoClass(ll6, 14, 0);  
  64.          
  65.         setNoClass(ll7, 14, 0);  
  66.          
  67.     }  
  68.     /**
  69.      * 设置课程的方法
  70.      * @param ll
  71.      * @param title 课程名称
  72.      * @param place 地点
  73.      * @param last 时间
  74.      * @param time 周次
  75.      * @param classes 节数
  76.      * @param color 背景色
  77.      */  
  78.     void setClass(LinearLayout ll, String title, String place,  
  79.             String last, String time, int classes, int color)  
  80.     {  
  81.         View view = LayoutInflater.from(this).inflate(R.layout.item, null);  
  82.         view.setMinimumHeight(dip2px(this,classes * 48));  
  83.         view.setBackgroundColor(colors[color]);  
  84.         ((TextView)view.findViewById(R.id.title)).setText(title);  
  85.         ((TextView)view.findViewById(R.id.place)).setText(place);  
  86.         ((TextView)view.findViewById(R.id.last)).setText(last);  
  87.         ((TextView)view.findViewById(R.id.time)).setText(time);  
  88.         //为课程View设置点击的监听器  
  89.         view.setOnClickListener(new OnClickClassListener());  
  90.         TextView blank1 = new TextView(this);  
  91.         TextView blank2 = new TextView(this);  
  92.         blank1.setHeight(dip2px(this,classes));  
  93.         blank2.setHeight(dip2px(this,classes));  
  94.         ll.addView(blank1);  
  95.         ll.addView(view);  
  96.         ll.addView(blank2);  
  97.     }  
  98.     /**
  99.      * 设置无课(空百)
  100.      * @param ll
  101.      * @param classes 无课的节数(长度)
  102.      * @param color
  103.      */  
  104.     void setNoClass(LinearLayout ll,int classes, int color)  
  105.     {  
  106.         TextView blank = new TextView(this);  
  107.         if(color == 0)  
  108.             blank.setMinHeight(dip2px(this,classes * 50));  
  109.         blank.setBackgroundColor(colors[color]);  
  110.         ll.addView(blank);  
  111.     }  
  112.     //点击课程的监听器  
  113.     class OnClickClassListener implements OnClickListener{  
  114.          
  115.         public void onClick(View v) {  
  116.             // TODO Auto-generated method stub  
  117.             String title;  
  118.             title = (String) ((TextView)v.findViewById(R.id.title)).getText();  
  119.             Toast.makeText(getApplicationContext(), "你点击的是:" + title,   
  120.                     Toast.LENGTH_SHORT).show();  
  121.         }  
  122.     }  
  123.       
  124.     public static int dip2px(Context context, float dpValue) {         
  125.         final float scale = context.getResources().getDisplayMetrics().density;         
  126.         return (int) (dpValue * scale + 0.5f);} /** * 根据手机的分辨率从 px(像素) 的单位 转成为 dp */  
  127.     public static int px2dip(Context context, float pxValue) {         
  128.         final float scale = context.getResources().getDisplayMetrics().density;         
  129.         return (int) (pxValue / scale + 0.5f);}  
  130. }</font>
复制代码


源码: Android课表视图.zip (621.67 KB, 下载次数: 191)




0 个回复

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