我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android Studio实现购买售卖系统

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android Studio实现购买售卖系统

本文实例为大家分享了Android Studio实现购买售卖系统的具体代码,供大家参考,具体内容如下

本项目基于安卓系统开发的界面设计,包括登录,主页面,展示页面,购买页面等六个页面

ShopActivity

package com.example.tryfirst;
 
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.TextView;
 
public class ShopActivity extends AppCompatActivity implements View.OnClickListener{
 
    private ItemInfo itemInfo0;
    private ItemInfo itemInfo1;
    private ItemInfo itemInfo2;
    private ItemInfo itemInfo3;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_shop);
        itemInfo0 = new ItemInfo("空军一号");
        itemInfo1 = new ItemInfo("李宁足球鞋");
        itemInfo2 = new ItemInfo("匹克太极篮球鞋");
        itemInfo3 = new ItemInfo("林丹羽毛球鞋");
        findViewById(R.id.btn_0).setOnClickListener(this);
        findViewById(R.id.btn_1).setOnClickListener(this);
        findViewById(R.id.btn_2).setOnClickListener(this);
        findViewById(R.id.btn_3).setOnClickListener(this);
    }
    public void onClick(View v){
        Intent intent;
        switch (v.getId()) {
            case R.id.btn_0:
                intent = new Intent();
                intent.putExtra("shoe",itemInfo0);
                setResult(1,intent);
                finish();
                break;
            case R.id.btn_1:
                intent = new Intent();
                intent.putExtra("shoe",itemInfo1);
                setResult(1,intent);
                finish();
                break;
            case R.id.btn_2:
                intent = new Intent();
                intent.putExtra("shoe",itemInfo0);
                setResult(1,intent);
                finish();
                break;
            case R.id.btn_3:
                intent = new Intent();
                intent.putExtra("shoe",itemInfo0);
                setResult(1,intent);
                finish();
                break;
        }
    }
}

ShowActivity

package com.example.tryfirst;
 
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.TextView;
 
public class ShowActivity extends AppCompatActivity {
 
    private TextView tv_name;
    private TextView tv_password;
    private TextView shoe;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_show);
        Intent intent = getIntent();
        String name = intent.getStringExtra("name");
        String password = intent.getStringExtra("password");
        tv_name = (TextView) findViewById(R.id.tv_name);
        tv_password = (TextView) findViewById(R.id.tv_password);
        tv_name.setText("用户名为: " + name);
        tv_password.setText("密码为: " + password);
        shoe = (TextView) findViewById(R.id.tv_food_progress);
    }
    public void click0(View view){
        Intent intent = new Intent(this, FriendActivity.class);
        startActivity(intent);
    }
    public void click1(View view){
        Intent intent = new Intent(this,ShopActivity.class);
        startActivityForResult(intent,1);
    }
    public void click2(View view){
        Intent intent = new Intent(this,ListActivity.class);
        startActivity(intent);
    }
    @Override
    protected void onActivityResult(int requestCode,
                                    int resultCode,Intent data){
        super.onActivityResult(requestCode,resultCode,data);
        if(data !=null){
            if(requestCode==1){
                if(resultCode==1){
                    ItemInfo info =
                            (ItemInfo) data.getSerializableExtra("food");
                    updateProgress(info);
                }
            }
        }
    }
    private void updateProgress(ItemInfo info){shoe.setText(info.getName());
    }
}

ListActivity

package com.example.tryfirst;
 
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.TextView;
public class ListActivity extends AppCompatActivity {
    private ListView mListView;
    private String[] names = {"郭艾伦aj34"};
    private int[] herd = {R.drawable.l};
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_list);
        mListView = (ListView) findViewById(R.id.lv);
        MyBaseAdapter myAdapter = new MyBaseAdapter();
        mListView.setAdapter(myAdapter);
    }
    class MyBaseAdapter extends BaseAdapter {
        @Override
        public int getCount() {
            return names.length;
        }
 
        @Override
        public Object getItem(int position) {
            return names[position];
        }
 
        @Override
        public long getItemId(int position) {
            return position;
        }
 
        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            //将list.xml文件找出来转化为View对象
            View view = View.inflate(ListActivity.this,R.layout.list,null);
            TextView mTextView = (TextView) view.findViewById(R.id.tv);
            mTextView.setText(names[position]);
            ImageView imageView = (ImageView) view.findViewById(R.id.imge);
            imageView.setBackgroundResource(herd[position]);
            return view;
        }
    }
}

Activity_Shop .xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/back"
    android:orientation="vertical"
    tools:context=".ShopActivity">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#307f7f7f"
        android:gravity="center_vertical"
        android:orientation="horizontal"
        android:padding="5dp">
        <ImageView
            android:layout_width="80dp"
            android:layout_height="200dp"
            android:background="@drawable/lin"
            android:layout_weight="1"/>
        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dp"
            android:text="空军一号"
            android:layout_weight="3"
            android:textSize="35sp" />
        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:id="@+id/btn_8"
            android:text="加入购物车"
            android:layout_weight="1"/>
        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:id="@+id/btn_0"
            android:text="购买"/>
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <ImageView
            android:layout_width="80dp"
            android:layout_height="200dp"
            android:background="@drawable/longtuos"
            android:layout_weight="1"/>
        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dp"
            android:text="李宁足球鞋"
            android:textSize="35sp"
            android:layout_weight="3"/>
        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:id="@+id/btn_9"
            android:text="加入购物车"
            android:layout_weight="1"/>
        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:id="@+id/btn_1"
            android:text="购买"
            android:layout_weight="1"/>
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <ImageView
            android:layout_width="80dp"
            android:layout_height="200dp"
            android:background="@drawable/longtuos"
            android:layout_weight="1"/>
        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dp"
            android:text="匹克太极篮球鞋"
            android:textSize="35sp"
            android:layout_weight="3"/>
        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:id="@+id/btn_6"
            android:text="加入购物车"
            android:layout_weight="1"/>
        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:id="@+id/btn_2"
            android:text="购买"
            android:layout_weight="1"/>
    </LinearLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <ImageView
            android:layout_width="80dp"
            android:layout_height="200dp"
            android:background="@drawable/longtuos"
            android:layout_weight="1"/>
        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="20dp"
            android:text="林丹羽毛球鞋"
            android:textSize="35sp"
            android:layout_weight="3"/>
        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:id="@+id/btn_3"
            android:text="加入购物车"
            android:layout_weight="1"/>
        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:id="@+id/btn_4"
            android:text="购买"
            android:layout_weight="1"/>
    </LinearLayout>
</LinearLayout>

Activity_Show .xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/back"
    android:orientation="vertical"
    tools:context=".MainActivity">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="70dp"
        android:layout_marginBottom="50dp"
        android:orientation="horizontal"
        android:padding="20dp">
        <ImageView
            android:id="@+id/pet"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:background="@drawable/head"/>
        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:layout_gravity="center"
            android:orientation="vertical"
            android:paddingLeft="40dp">
            <TextView
                android:id="@+id/tv_name"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text=" "
                android:textSize="20sp"
                android:textColor="#33cc00"/>
            <TextView
                android:id="@+id/tv_password"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="20dp"
                android:text=" "
                android:textSize="20sp"
                android:textColor="#33cc00"/>
        </LinearLayout>
    </LinearLayout>
    <TableLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginBottom="50dp"
        android:layout_marginLeft="20dp"
        android:layout_marginRight="5dp">
        <TableRow
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
            <TextView
                android:layout_width="0dip"
                android:layout_height="wrap_content"
                android:layout_weight="9"
                android:text="背景是北宋郭忠恕的明皇避暑宫图"
                android:textColor="#ff0000"
                android:textSize="25sp" />
            <TextView
                android:id="@+id/tv_food_progress"
                android:layout_width="0dip"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:layout_gravity="center"
                android:text=" "
                android:textColor="#99ff77"
                android:textSize="40sp"/>
        </TableRow>
    </TableLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
        <Button
            android:layout_gravity="center"
            android:layout_marginLeft="28dp"
            android:layout_marginRight="50dp"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:background="@drawable/a"
            android:onClick="click0"/>
        <Button
            android:layout_gravity="center"
            android:layout_marginRight="28dp"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:background="@drawable/buy"
            android:layout_marginTop="90px"
            android:onClick="click1"/>
    </LinearLayout>
    <Button
        android:layout_width="900px"
        android:layout_height="100px"
        android:layout_marginTop="50dp"
        android:text="鞋的列表展示"
        android:onClick="click2"
        android:textColor="#ff0000"
        android:background="#99ff00"/>
</LinearLayout>

运行结果展示图

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android Studio实现购买售卖系统

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Java如何实现茶叶售卖商城系统

本篇内容介绍了“Java如何实现茶叶售卖商城系统”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!前言这是一个应用SSM框架的项目,前端页面整洁
2023-06-22

php如何实现购买系统

今天小编给大家分享一下php如何实现购买系统的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。一、购物车设计购物车是购买系统中非
2023-07-05

Java怎么进行电子产品售卖商城系统的实现

这篇文章给大家介绍Java怎么进行电子产品售卖商城系统的实现,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。项目描述:这是一个基于SpringBoot+Vue框架开发的仿小米电子产品售卖商城系统。首先,这是一个前后端分离
2023-06-29

PHP开发点餐系统的外卖订购功能实现方法是什么?

PHP开发点餐系统的外卖订购功能实现方法是什么?随着外卖业务的日益兴盛,许多餐饮企业开始重视开发自己的点餐系统,并加入外卖订购的功能。PHP作为一种广泛应用于Web开发的编程语言,被广泛用于开发各种类型的网站和应用程序。那么,如何利用PHP
PHP开发点餐系统的外卖订购功能实现方法是什么?
2023-11-01

PHP开发买菜系统的购物车功能实现方法

随着网络购物的不断发展,购物车成了一个不可或缺的功能,买菜系统也不例外,购物车在其中也显得极其重要和实用。本文将介绍如何利用PHP开发买菜系统的购物车功能实现方法。一. 购物车数据的存储方法购物车的本质是一个容器,需要在其中存储商品的信息,
PHP开发买菜系统的购物车功能实现方法
2023-11-01

PHP开发买菜系统的订单退款与售后服务功能实现方法

随着网络购物的普及,越来越多的人开始选择在线购买生活用品,其中买菜系统成为了一个热门的应用。在使用买菜系统的过程中,用户可能会遇到一些问题,比如订单退款和售后服务。本文将介绍如何在PHP开发买菜系统中实现订单退款和售后服务功能。首先,我们需
PHP开发买菜系统的订单退款与售后服务功能实现方法
2023-11-01

买菜系统中如何实现用户购物历史与推荐功能?

随着人们的生活节奏加快,越来越多的人选择通过在线购物来方便快捷地解决食物采购问题。许多购物平台也随之出现,其中买菜系统成为了不少人的首选。但在购物过程中,用户往往会遇到买不到想要的商品或者对新品没有足够的了解,这时候,推荐系统就变得尤为重要
买菜系统中如何实现用户购物历史与推荐功能?
2023-11-01

买菜系统中如何实现购物车中商品数量的实时更新功能?

买菜系统中如何实现购物车中商品数量的实时更新功能?在现代社会,越来越多的人选择通过网上购买食材,而不是亲自去市场购买。为了方便顾客的购物体验,许多购物平台都提供了买菜系统。在这个系统中,顾客可以选择自己需要的食材,并将其加入购物车。然而,在
买菜系统中如何实现购物车中商品数量的实时更新功能?
2023-11-01

PHP开发买菜系统的购物车商品数量限制功能实现方法

近年来,随着电商行业的蓬勃发展,越来越多的传统企业开始将业务拓展到线上平台。作为传统零售行业的一员,买菜系统也开始逐渐转向线上销售。为了满足用户的需求,我们需要实现购物车商品数量限制功能,以确保系统的正常运行和用户体验。首先,让我们来了解一
PHP开发买菜系统的购物车商品数量限制功能实现方法
2023-11-01

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录