zoukankan      html  css  js  c++  java
  • 团对冲刺3

    1.继续新闻app界面的设计

    在进去第一个界面中有个搜索栏,这是参考的内容https://blog.csdn.net/qq_21153627/article/details/70156831

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:background="#eee"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <LinearLayout
    android:background="#eb4f38"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">


    <FrameLayout

    android:layout_weight="1"
    android:layout_width="0dp"
    android:layout_height="wrap_content">

    <EditText
    android:id="@+id/search_et_input"
    android:layout_gravity="center_vertical"
    android:layout_margin="10dp"
    android:drawableLeft="@drawable/search_icon"
    android:drawablePadding="5dp"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/search_edittext_shape"
    android:textSize="16sp"
    android:imeOptions="actionSearch"
    android:inputType="text"
    android:hint="请输入关键字"/>

    <ImageView
    android:visibility="gone"
    android:layout_marginRight="20dp"
    android:src="@drawable/iv_delete_bg"
    android:id="@+id/search_iv_delete"
    android:layout_gravity="right|center_vertical"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>
    </FrameLayout>

    <Button
    android:id="@+id/search_btn_back"
    android:layout_marginRight="10dp"
    android:layout_marginTop="10dp"
    android:layout_marginBottom="10dp"
    android:layout_gravity="center_vertical"
    android:background="@drawable/btn_search_bg"
    android:layout_width="@dimen/btn_width"
    android:layout_height="@dimen/btn_height"
    android:text="返回"
    android:textColor="@color/color_white"/>
    </LinearLayout>
    </LinearLayout>
     
  • 相关阅读:
    IIS6.0中,使用其它用户运行IIS
    c++构造函数详解
    Java创建文件夹及文件
    三大范式及存储方式
    对新型软件程序语言及架构的一点讨论
    C++虚函数解析
    验收测试驱动开发:ATDD实例详解
    什么是父路径及开启的方法
    note:全局配置visual studio 2010 头文件目录
    怎么把二级域名重定向到主域名
  • 原文地址:https://www.cnblogs.com/chenghaixiang/p/14913635.html
Copyright © 2011-2022 走看看