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

    1.今天完成了在新闻app首页显示条条的新闻,具体内容需要队员数据库数据

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:cardview="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="120dp"
    android:orientation="horizontal"
    android:id="@+id/click"
    android:padding="10dp">
    <androidx.cardview.widget.CardView
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:layout_gravity="center"
    cardview:cardCornerRadius="4dp"
    cardview:cardElevation="4dp">
    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="80dp"
    android:orientation="horizontal">

    <ImageView
    android:id="@+id/iv_portrait"
    android:layout_width="70dp"
    android:layout_height="70dp"
    android:layout_margin="5dp"
    android:src="@mipmap/ic_launcher" />

    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="5dp"
    android:orientation="vertical">

    <TextView
    android:id="@+id/tv_title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="5dp"
    android:textSize="15sp"
    android:textStyle="bold"
    android:text="新闻标题"
    android:textColor="@color/black"/>
    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">
    <TextView
    android:id="@+id/tv_time"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="5dp"
    android:text="时间"
    android:textColor="@color/grey"
    />
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/tv_author"
    android:layout_marginTop="5dp"
    android:layout_marginLeft="10dp"
    android:text="作者"
    android:textColor="@color/grey"/>
    <TextView
    android:id="@+id/tv_place"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="5dp"
    android:layout_marginLeft="10dp"
    android:text="出处"
    android:textColor="@color/grey"
    />
    </LinearLayout>

    </LinearLayout>
    </LinearLayout>

    </androidx.cardview.widget.CardView>
    </LinearLayout>
     
  • 相关阅读:
    【转】@JoinColumn 详解
    Hibernate的getTransaction()和beginTransaction()
    什么是事务(transaction)?它有什么好处
    tomcat安装不成功.提示:failed to install tomcat6 service ,check your setting and permissions
    java面试题02
    JAVA面试题01
    浅析=======Struts2之==========valueStack
    Hibernate映射文件
    Hibernate核心配置文件
    激活Microsoft Word 2010
  • 原文地址:https://www.cnblogs.com/chenghaixiang/p/14913910.html
Copyright © 2011-2022 走看看