博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第二次冲刺 07
阅读量:2242 次
发布时间:2019-05-09

本文共 781 字,大约阅读时间需要 2 分钟。

第七天冲刺

昨天主要做了主页的内容,今天要做查找的内容,主要是从数据中查找,下面是主要的带代码

<?xml version="1.0" encoding="utf-8"?>

 <HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android" 

    android:layout_width="fill_parent" 

    android:layout_height="fill_parent"

    android:background="@drawable/mm" > 

 

 

    <ScrollView 

        android:layout_width="fill_parent" 

        android:layout_height="wrap_content" > 

   

        <LinearLayout 

            android:id="@+id/ll"

            android:layout_width="match_parent"

             android:layout_height="match_parent"

             android:orientation="vertical"  >

 

            <TextView

                android:layout_width="fill_parent"

                android:layout_height="96dp"

                android:gravity="center"

                android:text=" 姓 名         性 别              电话              专长       "

                android:textSize="15dp" >

         

   </TextView>  

        </LinearLayout> 

    </ScrollView> 

 

</HorizontalScrollView>  

转载于:https://www.cnblogs.com/lipengpengpeng/p/5606821.html

你可能感兴趣的文章
进程和线程的概念、区别和联系
查看>>
CMake 入门实战
查看>>
绑定CPU逻辑核心的利器——taskset
查看>>
Linux下perf性能测试火焰图只显示函数地址不显示函数名的问题
查看>>
c结构体、c++结构体和c++类的区别以及错误纠正
查看>>
Linux下查看根目录各文件内存占用情况
查看>>
A星算法详解(个人认为最详细,最通俗易懂的一个版本)
查看>>
利用栈实现DFS
查看>>
(PAT 1019) General Palindromic Number (进制转换)
查看>>
(PAT 1073) Scientific Notation (字符串模拟题)
查看>>
(PAT 1080) Graduate Admission (排序)
查看>>
Play on Words UVA - 10129 (欧拉路径)
查看>>
mininet+floodlight搭建sdn环境并创建简答topo
查看>>
【linux】nohup和&的作用
查看>>
Set、WeakSet、Map以及WeakMap结构基本知识点
查看>>
【NLP学习笔记】(一)Gensim基本使用方法
查看>>
【NLP学习笔记】(二)gensim使用之Topics and Transformations
查看>>
【深度学习】LSTM的架构及公式
查看>>
【python】re模块常用方法
查看>>
剑指offer 19.二叉树的镜像
查看>>