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>
     
  • 相关阅读:
    Skimage=scikit-image SciKit 包的模块(转载)
    python day12
    python day11
    python day10
    python day9
    python day8
    python day7
    python day6
    python 第五天
    python 第四天
  • 原文地址:https://www.cnblogs.com/chenghaixiang/p/14913931.html
Copyright © 2011-2022 走看看