Android物联网应用程序开发(智慧城市)—— 查询购物信息界面开发

收集整理了一份《2024年最新物联网嵌入式全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升的朋友。
img
img

如果你需要这些资料,可以戳这里获取

需要这些体系化资料的朋友,可以加我V获取:vip1024c (备注嵌入式)

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人

都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

android:background=“@drawable/btn_search” />

<LinearLayout

android:layout_width=“match_parent”

android:layout_height=“30dp”

android:layout_marginTop=“20dp”

android:background=“@drawable/input”

android:gravity=“center_vertical”

android:orientation=“horizontal” >

<TextView

android:id=“@+id/tvNo”

android:layout_width=“0.0dp”

android:layout_height=“wrap_content”

android:layout_weight=“2”

android:text=“订单号”

android:textColor=“@color/white” />

<View

android:layout_width=“1dp”

android:layout_height=“match_parent”

android:background=“#ffffff” />

<TextView

android:id=“@+id/tvAmount”

android:layout_width=“0.0dp”

android:layout_height=“wrap_content”

android:layout_weight=“1”

android:text=“金额”

android:textColor=“@color/white” />

<View

android:layout_width=“1dp”

android:layout_height=“match_parent”

android:background=“#ffffff” />

<TextView

android:id=“@+id/tvState”

android:layout_width=“0.0dp”

android:layout_height=“wrap_content”

android:layout_weight=“1”

android:text=“状态”

android:textColor=“@color/white” />

<View

android:layout_width=“1dp”

android:layout_height=“match_parent”

android:background=“#ffffff” />

<TextView

android:id=“@+id/tvTime”

android:layout_width=“0.0dp”

android:layout_height=“wrap_content”

android:layout_weight=“2”

android:text=“添加时间”

android:textColor=“@color/white” />

<View

android:layout_width=“1dp”

android:layout_height=“match_parent”

android:background=“#ffffff” />

<TextView

android:id=“@+id/tvOperate”

android:layout_width=“0.0dp”

android:layout_height=“wrap_content”

android:layout_weight=“2”

android:text=“操作”

android:textColor=“@color/white” />

<ListView

android:id=“@+id/listView1”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:cacheColorHint=“#00000000”

android:fadingEdgeLength=“0dp” >

引用布局:items.xml

<?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” >

<LinearLayout

android:layout_width=“match_parent”

android:layout_height=“30dp”

android:gravity=“center_vertical”

android:background=“@drawable/input”

android:orientation=“horizontal” >

<TextView

android:id=“@+id/tvNo”

android:layout_width=“0.0dp”

android:layout_height=“wrap_content”

android:layout_weight=“2”

android:textColor=“@color/white”

android:text=“订单号” />

<View

android:layout_width=“1dp”

android:layout_height=“match_parent”

android:background=“#ffffff”

/>

<TextView

android:id=“@+id/tvAmount”

android:layout_width=“0.0dp”

android:layout_height=“wrap_content”

android:layout_weight=“1”

android:textColor=“@color/white”

android:text=“金额” />

<View

android:layout_width=“1dp”

android:layout_height=“match_parent”

android:background=“#ffffff”

/>

<TextView

android:id=“@+id/tvState”

android:layout_width=“0.0dp”

android:layout_height=“wrap_content”

android:layout_weight=“1”

android:textColor=“@color/white”

android:text=“状态” />

<View

android:layout_width=“1dp”

android:layout_height=“match_parent”

android:background=“#ffffff”

/>

<TextView

android:id=“@+id/tvTime”

android:layout_width=“0.0dp”

android:layout_height=“wrap_content”

android:layout_weight=“2”

android:textColor=“@color/white”

android:text=“添加时间” />

<View

android:layout_width=“1dp”

android:layout_height=“match_parent”

android:background=“#ffffff”

/>

<TextView

android:id=“@+id/tvOperate”

android:layout_width=“0.0dp”

android:layout_height=“wrap_content”

android:layout_weight=“2”

android:textColor=“@color/white”

android:text=“操作” />

Java类进行列表项内容的添加

import android.content.Context;

import android.view.LayoutInflater;

import android.view.View;

import android.view.ViewGroup;

import android.widget.BaseAdapter;

import android.widget.TextView;

public abstract class MyAdapter extends BaseAdapter {

private Context context;

public MyAdapter(Context context){

this.context = context;

}

@Override

public View getView(int position, View convertView, ViewGroup parent) {

ViewHoller v;

if(convertView==null){

v = new ViewHoller();

convertView = LayoutInflater.from(context).inflate(R.layout.items, null);

v.mTvNo = (TextView) convertView.findViewById(R.id.tvNo);

v.mTvAmount = (TextView) convertView.findViewById(R.id.tvAmount);

v.mTvState = (TextView)convertView.findViewById(R.id.tvState);

v.mTvTime = (TextView)convertView.findViewById(R.id.tvTime);

v.mTvOperate = (TextView)convertView.findViewById(R.id.tvOperate);

convertView.setTag(v);

}else{

v = (ViewHoller) convertView.getTag();

收集整理了一份《2024年最新物联网嵌入式全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升的朋友。
img
img

如果你需要这些资料,可以戳这里获取

需要这些体系化资料的朋友,可以加我V获取:vip1024c (备注嵌入式)

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人

都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

v = (ViewHoller) convertView.getTag();

收集整理了一份《2024年最新物联网嵌入式全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升的朋友。
[外链图片转存中…(img-5vmNLReZ-1715840730637)]
[外链图片转存中…(img-Yc1KGzY1-1715840730638)]

如果你需要这些资料,可以戳这里获取

需要这些体系化资料的朋友,可以加我V获取:vip1024c (备注嵌入式)

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人

都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值