zoukankan      html  css  js  c++  java
  • 团队冲刺8

    1.今天完成每条新闻点进去一个完整游览界面

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/datail_title"
    android:text="标题"
    android:textSize="20sp"
    android:textStyle="bold"
    android:textColor="@color/black"/>
    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/datail_place"
    android:text="出处"
    android:layout_marginTop="10dp"/>
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/datail_time"
    android:text="时间"
    android:layout_marginLeft="20dp"
    android:layout_marginTop="10dp"/>
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/datail_author"
    android:layout_marginLeft="20dp"
    android:text="作者"
    android:layout_marginTop="10dp"/>
    </LinearLayout>
    <WebView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/web"/>

    </LinearLayout>
     
  • 相关阅读:
    Java各种数据结构实现
    Lintcode答案&笔记
    JavaScript之onclick事件
    CSS3过渡结束监听事件,清除/修改表单元素的一些默认样式
    移动端自动调整根元素字体大小
    手机移动端事件封装
    js 拖拽 鼠标事件,放大镜效果
    CSS 常用属性之 阴影
    CSS常用属性之选择器
    全屏banner及全屏轮播
  • 原文地址:https://www.cnblogs.com/chenghaixiang/p/14913931.html
Copyright © 2011-2022 走看看