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>
     
  • 相关阅读:
    基本数据类型
    运算
    登录程序
    MySQL索引
    内存泄漏排查&CPU负载高排查
    dubbo
    SPI
    缓存,热点key
    Java BigDecimal
    Spring Bean's life
  • 原文地址:https://www.cnblogs.com/chenghaixiang/p/14913931.html
Copyright © 2011-2022 走看看