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>

运行结果展示图

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

(0)

相关推荐

  • Android自定义商品购买数量加减控件

    在购买商品时,大家可以自定义数字加减控件,来确定购买商品的实际数量,如何实现此控件,请参考下文: 1.自定义数字加减控件的要求 创建Module -NumberAddSubView A_输入的只能是数字,而且不能通过键盘输入 B_通过加减按钮操作数字 C_监听加减按钮 D_数组有最小值和最大值的限制 E_自定义属性 2.提供接口,让外界监听到数字的变化 1_设置接口 @Override public void onClick(View v) { if (v.getId() == R.id.btn

  • 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 Studio 中的Gradle构建系统示例

    相信有很多像我一样的朋友在使用Android Studio时,对 Gradle 和 Gradle Android 插件的版本号和作用不是很清楚,本篇文章的将对这些进行解释,最后通过一个实际的项目工程来说明其中的配置块的含义,并通过源代码的角度去剖析脚本的结构. 一.第一部分:Q&A 1.Gradle是什么? Gradle 是一个JVM平台上的自动化的构建工具,支持多项目构建,强有力依赖管理(本地或者远程依赖),构建脚本使用Groovy语言编写. 在Android Studio的 project

  • ubuntu19系统及以下版本安装android studio的教程

    根据往日的经验,完成一次任务做好笔记是一个很好的习惯!安装环境为ubuntu 首先下载: 1.android studio 下载链接:这里是官网 2.java jdk 下载链接:java官网 这里需要下载的是 dk-13.0.1_linux-x64_bin.tar.gz ,X64代表电脑是64位系统.tar.ge是lilnux可以直接解压的文件类型 第二步把下载好的文件直接解压到下载好的目录 鼠标右键单击直接解压到当前位置 第三步安装java和android 使用cp -r指令直把下载好文件复制

  • 使用Android Studio实现为系统级的app签名

    我们在做系统级的app开发时,往往会在AndroidManifest.xml文件中添加:android:sharedUserId="android.uid.system"以获取系统级的权限,如果你正在使用Android Studio进行开发,编译生成的apk会因为签名问题无法安装. 此时有两个解决方案, 1,是将编译好的apk放入源码中vender目录下,编写相应的android.mk文件,并在文件中加入: LOCAL_CERTIFICATE := platform 然后使用"

  • Android Studio使用教程(一):下载与安装及创建HelloWorld项目

    背景 相信大家对Android Studio已经不陌生了,Android Studio是Google于2013 I/O大会针对Android开发推出的新的开发工具,目前很多开源项目都已经在采用,Google的更新速度也很快,明显能感觉到这是Android开发的未来,那么我们还有什么理由不去拥抱未来呢? 虽然推出了很久,但是国内貌似普及的程度并不高,鉴于很多朋友求studio的详细教程,那么今天我就手把手教大家下载.安装.使用,Studio之路从这里开始. Android Studio VS Ec

  • 浅析Android Studio 3.0 升级各种坑(推荐)

    点击 Check for Updates 增量更新: 下载完成,会提示更新 您将 Gradle 更新至 4.1: 这里建议您对老项目先暂时点击 Don't remind me on this project,以防有坑.当然我不入地狱谁入地狱,我点 Update,于是问题来了,一直处于下载中,不过,莫担心,我下载好了,公众号聊天界面回复「 gradle-4.1-all 」,下载 gradle-4.1-all.zip 文件,放到: 重启 Android Studio. gradle 目录: Mac系

  • 图文详解Android Studio搭建Android集成开发环境的过程

    有很长一段时间没有更新博客了,最近实在是太忙了,没有时间去总结,现在终于可以有时间去总结一些Android上面的东西了,很久以前写过这篇关于使用Android Studio搭建Android集成开发环境,不过一直没有发表出来,写这篇文章的目的是记录一下Android开发环境的搭建过程,这篇文章写得一般般,主要是记录了整个搭建过程,没什么技术含量,觉得有帮助的朋友就看一下! 一.Android Studio简单介绍 2013年GoogleI/O大会首次发布了Android Studio IDE(A

  • Android Studio 3.0 新功能全面解析和旧项目适配问题

    简介: Android Studio是Android的官方IDE.它是专为Android而打造,可以加快您的开发速度,帮助您为每款Android设备构建最优应用. 它提供专为Android开发者量身定制的工具,其中包括丰富的代码编辑.调试.测试和性能分析工具. 上周四,Google 终于在经历大半年的打磨锤炼之后正式发布 Android Studio 3.0 版本,给广大安卓开发人员一份满意的答卷.如往常一样,每次新版开发工具的发布,很多谨慎点的朋友仍担心稳定性.是否存在坑等问题,选择隔岸观火,

  • Android studio 混淆+打包+验证是否成功

    前言: 单挑Android项目,最近即时通讯用到环信,集成sdk的时候 官方有一句 在 ProGuard 文件中加入以下 keep. -keep class com.hyphenate.** {*;} -dontwarn com.hyphenate.** 即:混淆规则. 自己没写过关于混淆打包的文章,在此补上. 下面了解Android studio环境下 项目混淆打包的操作. 一.打包: 即 将Android项目生成.apk文件,让用户去安装. 1.工具栏 Build->Generate Sig

  • Android studio点击跳转WebView详解

    本文实例为大家分享了Android studio点击跳转WebView的具体代码,供大家参考,具体内容如下 代码文件 import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.webkit.WebView; import android.webkit.WebViewClient; import android.widget.

随机推荐