zoukankan      html  css  js  c++  java
  • 关于结对编程项目(Sports club 三)

    我的活动界面显示
    在此功能里可以添加自己活动内容,活动时间,以及活动注意事项和心情。

    <RelativeLayout
        android:id="@+id/vip_top_r"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="@drawable/sporsmain_bg" >
    
        <include
            android:id="@+id/vip_include_top"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            layout="@layout/top_1" />
    
        <RelativeLayout
            android:id="@+id/vip_rl_1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_below="@+id/vip_include_top"
            android:layout_marginTop="30dp"
            android:background="@drawable/set_bg2" >
    
        </RelativeLayout>
    

    界面显示
    package com.lolo.my361.entity;

    import android.widget.ImageView;

    public class Event {
    private String name;
    private String Adress;
    private ImageView logo;

    public String getName() {
    	return name;
    }
    
    public void setName(String name) {
    	this.name = name;
    }
    
    public String getAdress() {
    	return adress;
    }
    
    public void setAdress(String adress) {
    	this.adress = adress;
    }
    
    public ImageView getLogo() {
    	return logo;
    }
    
    public void setLogo(ImageView logo) {
    	this.logo = logo;
    }
  • 相关阅读:
    JS判断是否是IE浏览器
    JS在页面光标位置插入新内容
    JS限制文本框输入金额,保留2位小数
    JS格式化日期方法
    MySQL数据库中16进制进行位运算
    Java过滤特殊字符的正则表达式
    JAVA查看线程信息
    win7 安装Redis
    JAVA获取catch中的异常信息
    cpu占用率过高debug
  • 原文地址:https://www.cnblogs.com/wangliang96/p/7044358.html
Copyright © 2011-2022 走看看