zoukankan      html  css  js  c++  java
  • 购物商城

    购物商城

    <?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="#43A047"
            android:gravity="center"
            android:text="购物商城"
            android:textColor="#FBC02D"
            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="@mipmap/orange" />
    
        <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="价格:8元1斤"
                android:textSize="16sp" />
        </LinearLayout>
    
    </LinearLayout>
    package com.example.myhomework;
    
    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;
        }
    
    }
    package com.example.myhomework;
    
    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.myhomework;
    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("橙子","8元1斤",R.mipmap.orange);
            fruitList.add(orange);
            Fruit cherry = new Fruit("樱桃","20元1斤",R.mipmap.cherry);
            fruitList.add(cherry);
            Fruit grape = new Fruit("葡萄","9元1斤",R.mipmap.grape);
            fruitList.add(grape);
            Fruit kiwi = new Fruit("猕猴桃","12元1斤",R.mipmap.kiwi);
            fruitList.add(kiwi);
            Fruit apple = new Fruit("苹果","5元1斤",R.mipmap.apple);
            fruitList.add(apple);
            Fruit strawberry = new Fruit("草莓","25元1斤",R.mipmap.strawberry);
            fruitList.add(strawberry);
    
        }
    }
  • 相关阅读:
    window7 上创建定时任务来运行自动化脚本
    初试接口测试
    list tuple dict (列表,元祖,字典间的相互转换)
    防止忘记的一些博客
    [python] 常用正则表达式爬取网页信息及分析HTML标签总结
    python正则表达式提取字符串
    关于json的dump和dumps
    三月23日测试Fiddler
    第六章 部署Python开发的web业务
    第五节 Nginx集群
  • 原文地址:https://www.cnblogs.com/horfe666/p/14125454.html
Copyright © 2011-2022 走看看