`
dawuafang
  • 浏览: 1191988 次
文章分类
社区版块
存档分类
最新评论

仿闲鱼键盘的思路

 
阅读更多

苦于找不到Android源码的仿闲鱼键盘也就可能自己手动实现了。

1、首先是布局文件:
<?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:background="@color/white"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:gravity="center_vertical"
        android:orientation="horizontal"
        android:paddingLeft="10dp"
        android:paddingRight="10dp" >

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:orientation="horizontal" >

            <TextView
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="1"
                android:gravity="center"
                android:text="价格"
                android:textSize="13sp" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="fill_parent"
                android:gravity="center"
                android:text="¥"
                android:textColor="@android:color/darker_gray" />

            <EditText
                android:maxLength="11"
                android:id="@+id/et_goodsPrice"
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="3"
                android:background="@null"
                android:hint="0.00"
                android:inputType="numberDecimal"
                android:paddingLeft="3dp"
                android:textColor="@android:color/holo_blue_dark"
                android:textSize="13sp" />
        </LinearLayout>

        <View
            android:layout_width="0.5dp"
            android:layout_height="fill_parent"
            android:background="@android:color/darker_gray" />

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_marginLeft="5dp"
            android:layout_weight="1"
            android:orientation="horizontal" >

            <TextView
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="1"
                android:gravity="center"
                android:text="原价"
                android:textSize="13sp" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="fill_parent"
                android:gravity="center"
                android:text="¥"
                android:textColor="@android:color/darker_gray" />

            <EditText
                android:maxLength="11"
                android:id="@+id/et_originalPrice"
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="3"
                android:background="@null"
                android:gravity="center_vertical"
                android:hint="0.00"
                android:inputType="numberDecimal"
                android:paddingLeft="3dp"
                android:textColor="@android:color/holo_blue_dark"
                android:textSize="13sp" />
        </LinearLayout>
    </LinearLayout>

    <View
        android:layout_width="match_parent"
        android:layout_height="0.1dp"
        android:background="@android:color/darker_gray" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:gravity="center_vertical"
        android:orientation="horizontal"
        android:paddingLeft="10dp"
        android:paddingRight="10dp"
        android:visibility="gone" >

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:orientation="horizontal" >

            <TextView
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="1"
                android:gravity="center"
                android:text="运费"
                android:textSize="13sp" />

            <EditText
                android:layout_width="0dp"
                android:layout_height="fill_parent"
                android:layout_weight="3"
                android:background="@null"
                android:hint="0.00"
                android:textColor="@android:color/holo_blue_dark"
                android:textSize="13sp" />
        </LinearLayout>

        <View
            android:layout_width="1dp"
            android:layout_height="fill_parent"
            android:background="#ffffff" />

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_marginLeft="5dp"
            android:layout_weight="1"
            android:orientation="horizontal" >

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="fill_parent"
                android:gravity="center"
                android:text="原价"
                android:textSize="13sp" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="fill_parent"
                android:layout_marginLeft="5dp"
                android:background="@null"
                android:gravity="center"
                android:text="按距离计算运费"
                android:textColor="@android:color/darker_gray"
                android:textSize="12sp" />
        </LinearLayout>
    </LinearLayout>

    <View
        android:layout_width="match_parent"
        android:layout_height="0.5dp"
        android:background="@android:color/darker_gray" />

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="240dp"
        android:orientation="horizontal" >

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="3"
            android:orientation="vertical" >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1"
                android:orientation="horizontal" >

                <TextView
                    android:id="@+id/tv_softkb_1"
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:gravity="center"
                    android:text="1"
                    android:textSize="16sp" />

                <View
                    android:layout_width="0.5dp"
                    android:layout_height="fill_parent"
                    android:background="@android:color/darker_gray" />

                <TextView
                    android:id="@+id/tv_softkb_2"
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:gravity="center"
                    android:text="2"
                    android:textSize="16sp" />

                <View
                    android:layout_width="0.5dp"
                    android:layout_height="fill_parent"
                    android:background="@android:color/darker_gray" />

                <TextView
                    android:id="@+id/tv_softkb_3"
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:gravity="center"
                    android:text="3"
                    android:textSize="16sp" />

                <View
                    android:layout_width="0.5dp"
                    android:layout_height="fill_parent"
                    android:background="@android:color/darker_gray" />
            </LinearLayout>

            <View
                android:layout_width="match_parent"
                android:layout_height="0.5dp"
                android:background="@android:color/darker_gray" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1"
                android:orientation="horizontal" >

                <TextView
                    android:id="@+id/tv_softkb_4"
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:gravity="center"
                    android:text="4"
                    android:textSize="16sp" />

                <View
                    android:layout_width="0.5dp"
                    android:layout_height="fill_parent"
                    android:background="@android:color/darker_gray" />

                <TextView
                    android:id="@+id/tv_softkb_5"
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:gravity="center"
                    android:text="5"
                    android:textSize="16sp" />

                <View
                    android:layout_width="0.5dp"
                    android:layout_height="fill_parent"
                    android:background="@android:color/darker_gray" />

                <TextView
                    android:id="@+id/tv_softkb_6"
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:gravity="center"
                    android:text="6"
                    android:textSize="16sp" />

                <View
                    android:layout_width="0.5dp"
                    android:layout_height="fill_parent"
                    android:background="@android:color/darker_gray" />
            </LinearLayout>

            <View
                android:layout_width="match_parent"
                android:layout_height="0.5dp"
                android:background="@android:color/darker_gray" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1"
                android:orientation="horizontal" >

                <TextView
                    android:id="@+id/tv_softkb_7"
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:gravity="center"
                    android:text="7"
                    android:textSize="16sp" />

                <View
                    android:layout_width="0.5dp"
                    android:layout_height="fill_parent"
                    android:background="@android:color/darker_gray" />

                <TextView
                    android:id="@+id/tv_softkb_8"
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:gravity="center"
                    android:text="8"
                    android:textSize="16sp" />

                <View
                    android:layout_width="0.5dp"
                    android:layout_height="fill_parent"
                    android:background="@android:color/darker_gray" />

                <TextView
                    android:id="@+id/tv_softkb_9"
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:gravity="center"
                    android:text="9"
                    android:textSize="16sp" />

                <View
                    android:layout_width="0.5dp"
                    android:layout_height="fill_parent"
                    android:background="@android:color/darker_gray" />
            </LinearLayout>

            <View
                android:layout_width="match_parent"
                android:layout_height="0.5dp"
                android:background="@android:color/darker_gray" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1"
                android:orientation="horizontal" >

                <TextView
                    android:id="@+id/tv_softkb_0"
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:gravity="center"
                    android:text="0"
                    android:textSize="16sp" />

                <View
                    android:layout_width="0.5dp"
                    android:layout_height="fill_parent"
                    android:background="@android:color/darker_gray" />

                <TextView
                    android:id="@+id/tv_softkb_point"
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:gravity="center"
                    android:paddingBottom="8dp"
                    android:text="."
                    android:textSize="30sp" />

                <View
                    android:layout_width="0.5dp"
                    android:layout_height="fill_parent"
                    android:background="@android:color/darker_gray" />

                <ImageView
                    android:scaleType="centerInside"
                    android:clickable="true"
                    android:longClickable="true"
                    android:id="@+id/tv_softkb_hiddenkb"
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_weight="1"
                    android:src="@drawable/keyboard2x"
                    android:textSize="14sp" />

                <View
                    android:layout_width="0.5dp"
                    android:layout_height="fill_parent"
                    android:background="@android:color/darker_gray" />
            </LinearLayout>
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="1.045"
            android:orientation="vertical" >

            <ImageView
                android:scaleType="centerInside"
                android:src="@drawable/delete2x"
                android:longClickable="true"
                android:clickable="true"
                android:id="@+id/iv_delete"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1" />

            <TextView
                android:id="@+id/tv_confirmKB"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1.01"
                android:background="#0C85FE"
                android:gravity="center"
                android:text="确认"
                android:textColor="@color/color_ffffff" />
        </LinearLayout>
    </LinearLayout>

</LinearLayout>
2、用了最笨的方法,也不是第一个键就添加了点击事件 , 在外部定义StringBuffer 用户点击一次添加一次,同时设给edittext设置一次代码如下(之前要讲一下 我们要先判断两个edittext是否获取了焦点 如果获取了焦点 说明当前edittext 是可以输入的状态 如下图 红色标注):

这里写图片描述
代码如下:

/**
     * 输入金额
     * 
     * @param buffer
     * @param buffer2
     * @param etGoodsPrice
     * @param etOriginalPrice
     */
    private void setNumber(final StringBuffer buffer, final StringBuffer buffer2, final EditText etGoodsPrice,
            final EditText etOriginalPrice) {

        TextView tv_softkb_1 = (TextView) editPriceView.findViewById(R.id.tv_softkb_1);
        tv_softkb_1.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {

                if (etGoodsPrice.hasFocus()) {
                    buffer.append("1");
                    etGoodsPrice.setText(buffer.toString());
                }
                if (etOriginalPrice.hasFocus()) {

                    buffer2.append("1");
                    etOriginalPrice.setText(buffer2.toString());
                }

            }
        });
        TextView tv_softkb_2 = (TextView) editPriceView.findViewById(R.id.tv_softkb_2);
        tv_softkb_2.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {

                if (etGoodsPrice.hasFocus()) {
                    buffer.append("2");
                    etGoodsPrice.setText(buffer.toString());
                }
                if (etOriginalPrice.hasFocus()) {

                    buffer2.append("2");
                    etOriginalPrice.setText(buffer2.toString());
                }

            }
        });
        TextView tv_softkb_3 = (TextView) editPriceView.findViewById(R.id.tv_softkb_3);
        tv_softkb_3.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {

                if (etGoodsPrice.hasFocus()) {
                    buffer.append("3");
                    etGoodsPrice.setText(buffer.toString());
                }
                if (etOriginalPrice.hasFocus()) {

                    buffer2.append("3");
                    etOriginalPrice.setText(buffer2.toString());
                }

            }
        });
        TextView tv_softkb_4 = (TextView) editPriceView.findViewById(R.id.tv_softkb_4);
        tv_softkb_4.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {

                if (etGoodsPrice.hasFocus()) {
                    buffer.append("4");
                    etGoodsPrice.setText(buffer.toString());
                }
                if (etOriginalPrice.hasFocus()) {

                    buffer2.append("4");
                    etOriginalPrice.setText(buffer2.toString());
                }

            }
        });
        TextView tv_softkb_5 = (TextView) editPriceView.findViewById(R.id.tv_softkb_5);
        tv_softkb_5.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {

                if (etGoodsPrice.hasFocus()) {
                    buffer.append("5");
                    etGoodsPrice.setText(buffer.toString());
                }
                if (etOriginalPrice.hasFocus()) {

                    buffer2.append("5");
                    etOriginalPrice.setText(buffer2.toString());
                }

            }
        });
        TextView tv_softkb_6 = (TextView) editPriceView.findViewById(R.id.tv_softkb_6);
        tv_softkb_6.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {

                if (etGoodsPrice.hasFocus()) {
                    buffer.append("6");
                    etGoodsPrice.setText(buffer.toString());
                }
                if (etOriginalPrice.hasFocus()) {

                    buffer2.append("6");
                    etOriginalPrice.setText(buffer2.toString());
                }

            }
        });
        TextView tv_softkb_7 = (TextView) editPriceView.findViewById(R.id.tv_softkb_7);
        tv_softkb_7.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {

                if (etGoodsPrice.hasFocus()) {
                    buffer.append("7");
                    etGoodsPrice.setText(buffer.toString());
                }
                if (etOriginalPrice.hasFocus()) {

                    buffer2.append("7");
                    etOriginalPrice.setText(buffer2.toString());
                }

            }
        });
        TextView tv_softkb_8 = (TextView) editPriceView.findViewById(R.id.tv_softkb_8);
        tv_softkb_8.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {

                if (etGoodsPrice.hasFocus()) {
                    buffer.append("8");
                    etGoodsPrice.setText(buffer.toString());
                }
                if (etOriginalPrice.hasFocus()) {

                    buffer2.append("8");
                    etOriginalPrice.setText(buffer2.toString());
                }

            }
        });
        TextView tv_softkb_9 = (TextView) editPriceView.findViewById(R.id.tv_softkb_9);
        tv_softkb_9.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {

                if (etGoodsPrice.hasFocus()) {
                    buffer.append("9");
                    etGoodsPrice.setText(buffer.toString());
                }
                if (etOriginalPrice.hasFocus()) {

                    buffer2.append("9");
                    etOriginalPrice.setText(buffer2.toString());
                }

            }
        });
        TextView tv_softkb_0 = (TextView) editPriceView.findViewById(R.id.tv_softkb_0);
        tv_softkb_0.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {

                if (etGoodsPrice.hasFocus()) {
                    buffer.append("0");
                    etGoodsPrice.setText(buffer.toString());
                }
                if (etOriginalPrice.hasFocus()) {

                    buffer2.append("0");
                    etOriginalPrice.setText(buffer2.toString());
                }

            }
        });

        tv_softkb_point.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {

                if (etGoodsPrice.hasFocus()) {
                    buffer.append(".");
                    etGoodsPrice.setText(buffer.toString());
                }
                if (etOriginalPrice.hasFocus()) {

                    buffer2.append(".");
                    etOriginalPrice.setText(buffer2.toString());
                }

            }
        });
    }

大家一定看到了这4个参数:
/**
* 输入金额
*
* @param buffer
* @param buffer2
* @param etGoodsPrice
* @param etOriginalPrice
*/
其中buffer 为了在用户点击键盘的时候把 键盘上的值appdend(“”);上去 然后设置给edittext 前提 edittext hasfocued ; buffer2 同buffer 的作用只不过它存储的是 editext2 的值。以上只是字面值 0 1 2 3 4 5 6 7 8 9 . 0 这些值可以设置到edittext.

删除键的设置:
删除键的点击事件 :

ImageView ivDelete = (ImageView) editPriceView.findViewById(R.id.iv_delete);

        ivDelete.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {

                // Toast.makeText(PostIssueActivity.this, "dddd", 0).show();

                delNumber();
            }

        });

删除方法实现:

    /**
     * 删除输入的金额
     */

    protected void delNumber() {
        if (etGoodsPrice.hasFocus()) {
            // buffer.delete(0, etGoodsPrice.getText().length());
            if (etGoodsPrice.getText().length() >= 1) {
                buffer.deleteCharAt(etGoodsPrice.getText().length() - 1);
                // buffer.deleteCharAt(etGoodsPrice.getText().length());
            }
            stringbuffer = buffer.toString();
            etGoodsPrice.setText(stringbuffer.substring(0, stringbuffer.length()));
            etGoodsPrice.setSelection(etGoodsPrice.length());

        }
        if (etOriginalPrice.hasFocus()) {
            // buffer2.delete(0,etOriginalPrice.getText().length());
            if (etOriginalPrice.getText().length() >= 1) {
                buffer2.deleteCharAt(etOriginalPrice.getText().length() - 1);
                // buffer2.deleteCharAt(etOriginalPrice.getText().length());
            }
            stringbuffer2 = buffer2.toString();
            etOriginalPrice.setText(stringbuffer2.substring(0, stringbuffer2.length()));
            etOriginalPrice.setSelection(etOriginalPrice.length());
        }
    }

你一定看这段代码: 从字符串最后个开始删除
buffer2.deleteCharAt(etOriginalPrice.getText().length() - 1);
buffer.deleteCharAt(etGoodsPrice.getText().length() - 1);

/
**删除之后设置数值
/
etGoodsPrice.setText(stringbuffer.substring(0, stringbuffer.length()));

/
*
**删除之后 让光标紧跟着 最后一个字符
/
        etGoodsPrice.setSelection(etGoodsPrice.length());
<script type="text/javascript"> $(function () { $('pre.prettyprint code').each(function () { var lines = $(this).text().split('\n').length; var $numbering = $('<ul/>').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('<li/>').text(i)); }; $numbering.fadeIn(1700); }); }); </script>
分享到:
评论

相关推荐

    仿闲鱼二手交易小程序.zip

    仿闲鱼二手交易小程序云开发模式的小程序demo看到有人fork的,所以还是完善一下。稍微搞一搞readmd。首先是一些完成的效果跑这个项目的话。本地没有数据库的话,所以可能卡在某个地方。因为这是很早的项目了,云开发...

    全网最全flutter学习案例仿闲鱼开源版

    在这个名为"全网最全flutter学习案例仿闲鱼开源版"的项目中,你将有机会深入学习Flutter的开发技巧,并通过仿制闲鱼应用,理解其设计思路和实现方法。 闲鱼,作为阿里巴巴旗下的一款二手商品交易平台,具有丰富的...

    Discuz精仿闲鱼二手发布Dz源码插件代码

    《深入解析Discuz精仿闲鱼二手发布Dz源码插件代码》 Discuz! 是一款广泛应用的开源社区论坛软件,它以其强大的功能、灵活的扩展性和丰富的模板设计深受广大站长的喜爱。在这个数字化信息时代,二手交易市场日益繁荣...

    仿闲鱼底部导航栏

    在本项目“仿闲鱼底部导航栏”中,开发者基于GitHub上的资源进行了简化和修改,旨在创建一个与闲鱼应用类似的底部导航组件。闲鱼,作为阿里巴巴集团旗下的二手商品交易平台,其底部导航栏设计简洁、直观,是用户熟悉...

    仿闲鱼安卓app,包含点赞评论分享,发生买卖,个人资料等

    【标题】中的“仿闲鱼安卓app”是一个项目,旨在模仿知名的二手交易平台——闲鱼的Android应用程序功能。这个app的开发涵盖了多种关键的移动应用开发技术,包括用户交互、社交功能以及电商交易流程。 【描述】...

    Java《仿闲鱼的二手交易平台-安卓端+后端打包 》+源代码

    &lt;项目介绍&gt; - 实现功能 ... 登录 发布商品 购买商品 浏览商品列表 聊天沟通 消息列表 ...不懂运行,下载完可以私聊问,可远程教学 该资源内项目源码是个人的毕设,代码都测试ok,都是运行成功后才上传资源,答辩评审...

    Discuz精仿闲鱼二手发布交易市场.zip

    《基于Discuz构建的精仿闲鱼二手发布交易市场模板详解》 在互联网时代,二手交易市场成为了一个不可或缺的领域,而Discuz作为一款强大的社区论坛软件,为创建此类平台提供了坚实的基础。本文将深入探讨如何利用...

    Android-bottombar仿闲鱼底部导航支持本地和网络图片

    【Android-bottombar仿闲鱼底部导航支持本地和网络图片】是一个专门为Android应用设计的组件库,它实现了类似闲鱼应用的底部导航栏功能,并且具备加载本地和网络图片的能力。这个组件可以帮助开发者轻松地在应用中...

    仿闲鱼 jsp+servlet

    【标题】"仿闲鱼 jsp+servlet"是一个基于Java技术栈的二手交易平台项目,主要使用了JSP(JavaServer Pages)和Servlet技术来构建前端界面和后端服务器逻辑。该项目旨在模仿知名的闲置物品交易应用闲鱼,提供包括管理...

    微服务仿闲鱼开源交易平台。PowerBy微信小程序

    matlab算法,毕设、课设程序,全部源码均已进行严格测试,可以直接运行! matlab算法,毕设、课设程序,全部源码均已进行严格测试,可以直接运行! matlab算法,毕设、课设程序,全部源码均已进行严格测试,可以直接...

    android仿闲鱼仿道聚城导航栏、发布动画

    "android仿闲鱼仿道聚城导航栏、发布动画"这个项目旨在实现类似闲鱼和道聚城应用中的导航栏和发布动画效果,这对于提升用户交互性和应用整体美感具有重要作用。 闲鱼和道聚城都是中国知名的二手商品交易平台,它们...

    swift-JXPageListView高仿闲鱼转转京东等主流APP列表底部分页滚动视图

    "JXPageListView"是一个开源库,它高仿了闲鱼、转转、京东以及中央天气预报等主流APP中的列表底部分页滚动视图。这个视图组件允许用户在浏览列表时,轻松地在页面间滑动切换,为用户提供清晰的分页指示,增强导航...

    毕业设计最新仿58转转闲鱼源码 二手商品交易平台网站PHP源码带独立后台管理.zip

    最新仿58转转闲鱼源码 二手商品交易平台网站PHP源码带独立后台管理 转转闲鱼交易猫八合一完整源码 集成多套模板,集成多套模板

    安卓SlidingMenu各种菜单侧滑菜单相关-仿闲鱼底部导航栏针对github上的资源进行简化修改.rar

    "仿闲鱼底部导航栏"这部分,指的是借鉴了闲鱼应用的设计元素,特别是在底部的导航栏部分。闲鱼应用的底部导航栏通常包括几个图标按钮,每个代表一个主要的页面类别,如“首页”、“发现”、“我的”等。当用户点击...

    安卓 仿闲鱼底部栏

    在安卓应用开发中,"仿闲鱼底部栏"是一个常见的设计模式,主要目的是为了提供用户友好的导航体验,类似于闲鱼APP的底部导航菜单。这个设计通常包括四个或五个图标,每个图标代表一个主要功能模块,如“首页”、...

    最新仿58转转闲鱼源码 二手商品交易平台网站PHP源码带独立后台管理.zip

    最新仿58转转闲鱼源码 二手商品交易平台网站PHP源码带独立后台管理.zip

    全新仿58走闲鱼源码,二手商品交易网络平台PHP源码带单独后台管理界面

    本文将详细解析“全新仿58走闲鱼源码”,这是一个用于构建二手商品交易网络平台的PHP源码,带有独立的后台管理界面。这个源码是基于PHP编程语言开发的,旨在模仿知名的58同城和闲鱼二手交易平台,提供用户发布、浏览...

    gw.zip_仿闲鱼小程序_学生街 购物 E4A_小程序 闲鱼_闲鱼_闲鱼 asp

    【标题】"gw.zip_仿闲鱼小程序_学生街 购物 E4A_小程序 闲鱼_闲鱼_闲鱼 asp" 暗示我们正在处理一个与开发仿造闲鱼的小程序有关的项目。这个项目可能是为了创建一个类似淘宝闲鱼的在线二手商品交易平台,但特别针对...

    ios-模仿闲鱼里面价格输入的键盘控件.zip

    在这个场景中,我们关注的是“ios-模仿闲鱼里面价格输入的键盘控件”,它是一个仿照闲鱼应用中的价格输入键盘的设计。闲鱼作为一个二手商品交易平台,其价格输入功能对用户体验至关重要,因此它的键盘设计需要简洁、...

    最新仿58转转闲鱼源码 二手商品交易平台网站PHP源码带独立后台管理

    本文将详细解析“最新仿58转转闲鱼源码”,这是一个基于PHP语言开发的二手商品交易平台网站源码,带有独立的后台管理系统。这个源码是针对58转转和闲鱼这类二手交易平台的设计风格进行仿制,为用户提供了一个可...

Global site tag (gtag.js) - Google Analytics