• 购物界面


    <?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">
    
        <TextView
            android:id="@+id/textView"
            android:layout_width="match_parent"
            android:layout_height="35dp"
            android:background="#009688"
            android:gravity="center"
            android:text="购物清单"
            android:textColor="#fff"
            android:textSize="25sp" />
    
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:orientation="vertical">
    
            <ListView
                android:id="@+id/fruit_item"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />
        </LinearLayout>
    </LinearLayout>
    <?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:layout_width="match_parent"
    android:layout_height="match_parent" >
    
    <ImageView
        android:id="@+id/imageView"
        android:layout_width="100dp"
        android:layout_height="100dp"
        app:srcCompat="@drawable/banana" />
    
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="100dp"
        android:gravity="left|center_vertical"
        android:orientation="vertical"
        android:scrollbarSize="8dp">
    
        <TextView
            android:id="@+id/textName"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="香蕉" />
    
        <TextView
            android:id="@+id/textPrice"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="价格:2元1斤"
            android:textSize="16sp" />
    </LinearLayout>
    
    </LinearLayout>
    package com.example.shoppinglist;
    
    import androidx.appcompat.app.AppCompatActivity;
    
    import android.app.Activity;
    import android.os.Bundle;
    import android.widget.ListView;
    
    import java.util.ArrayList;
    import java.util.List;
    
    public class MainActivity extends Activity {
        final List<Fruit> fruitList = new ArrayList<Fruit>();
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
            initFruits();
            FruitAdapte adapter = new FruitAdapte(this,R.layout.item,fruitList);
            ListView lv = (ListView)findViewById(R.id.fruit_item);
            lv.setAdapter(adapter);
    
        }
    
        public void initFruits(){
            Fruit orange = new Fruit("橙子","3元1斤",R.drawable.orange );
            fruitList.add(orange);
            Fruit cherry = new Fruit("苹果","4元1斤",R.drawable.apple);
            fruitList.add(cherry);
            Fruit grape = new Fruit("香蕉","2元1斤",R.drawable.banana);
            fruitList.add(grape);
            Fruit durian = new Fruit("火龙果","6元1斤",R.drawable.dragon );
            fruitList.add(durian);
            Fruit mango = new Fruit("桃子","6元1斤",R.drawable.peach );
            fruitList.add(mango);
            Fruit litchi = new Fruit("梨","4元1斤",R.drawable.pear);
            fruitList.add(litchi);
            Fruit guava = new Fruit("西瓜","1.5元1斤",R.drawable.watermelon);
            fruitList.add(guava);
    
        }
    }
    package com.example.shoppinglist;
    
    import android.content.Context;
    import android.view.LayoutInflater;
    import android.view.View;
    import android.view.ViewGroup;
    import android.widget.ArrayAdapter;
    import android.widget.ImageView;
    import android.widget.TextView;
    
    import java.util.List;
    
    public class FruitAdapte extends ArrayAdapter {
        int resourceId;
        public FruitAdapte(Context context, int resource, List<Fruit> objects){
            super(context, resource,objects);
            resourceId=resource;
        }
    
        @Override
        public View getView(int position, View convertView, ViewGroup parent){
            Fruit fruit = (Fruit)getItem(position);
            View view = LayoutInflater.from(getContext()).inflate(resourceId,null);
            ImageView iv = (ImageView)view.findViewById(R.id.imageView);
            TextView tv = (TextView)view.findViewById(R.id.textName);
            TextView pv = (TextView)view.findViewById(R.id.textPrice);
            iv.setImageResource(fruit.getImageId());
            tv.setText((CharSequence) fruit.getName());
            pv.setText((CharSequence)fruit.getPrice());
    
            return  view;
        }
    
    }
    package com.example.shoppinglist;
    
    public class Fruit {
        private int imageId;
        private String Name,Price;
        public Fruit(String Name, String Price, int imageId) {
            super();
            this.imageId = imageId;
            this.Name = Name;
            this.Price = Price;
        }
    
        public int getImageId() {
            return imageId;
        }
    
        public void setImageId(int imageId) {
            this.imageId = imageId;
        }
    
        public String getName() {
            return Name;
        }
    
        public void setName(String name) {
            Name = name;
        }
    
        public String getPrice() {
            return Price;
        }
    
        public void setPrice(String price) {
            Price = price;
        }
    
        public Object getItem(int position){
            return position;
        }
    
    }

  • 相关阅读:
    Spring事务原理一探
    浅谈AI视频技术超分辨率
    网易云信独家技术支持,壹点灵领跑心理服务行业
    音视频技术“塔尖”之争,网易云信如何C位出道?
    浅析为何使用融合CDN是大趋势?
    谈谈接入各种第三方推送平台的技术方案和一点经验
    编解码器之战:AV1、HEVC、VP9和VVC
    三年深入探索,网易云信让在线医疗做到技术“在线”
    5分钟学会Java9-Java11的七大新特性
    网易云信案例简析:锤科情怀缩影,子弹短信路在何方?
  • 原文地址:https://www.cnblogs.com/kukudihua/p/14012984.html
Copyright © 2020-2023  润新知