zoukankan      html  css  js  c++  java
  • 第一次冲刺(六)

    今天我完成了用户订房主界面的布局设计。

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:orientation="vertical" >
    
        <ListView
            android:id="@android:id/list"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
        </ListView>
    
    </RelativeLayout>
    <?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="100dp"
        >
        <TextView
            android:id="@+id/Head"
            android:layout_width="0dp"
            android:layout_height="85dp"
            android:layout_weight="2"
            android:textSize="15sp"
            android:maxLines="10"
            android:text=""/>
    
        <ImageView
            android:id="@+id/Img"
            android:layout_width="0dp"
            android:layout_height="100dp"
            android:layout_weight="2"/>
    
        <Button
            android:id="@+id/Btn"
            android:layout_width="60dp"
            android:layout_height="wrap_content"
            android:layout_marginTop="25dp"
            android:background="@drawable/btnpress"
            android:text="查看" />
    
    </LinearLayout>
  • 相关阅读:
    iframe
    daterangepicker 时间区间选择
    刷新父窗口
    echars
    原生http请求封装
    css布局方式总结
    js获取http请求响应头信息
    js事件循环机制 (Event Loop)
    http协议的状态码
    javaScript函数节流与函数防抖
  • 原文地址:https://www.cnblogs.com/20193925zxt/p/14910578.html
Copyright © 2011-2022 走看看