登录
首页 » Android » 仿支付宝芝麻信用

仿支付宝芝麻信用

于 2022-03-06 发布 文件大小:6.66 MB
0 124
下载积分: 2 下载次数: 1

代码说明:

仿支付宝芝麻信用,android   androidstudio的源码,特效牛逼,欢迎学习,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • android 酒店住房预定系统源码下载
    android 酒店住房预定系统源码下载
    2015-05-11下载
    积分:1
  • android 音乐播放器
    源代码 这是 源自 国外开发人员 开发的 音乐播放器。仅供大家学习使用,切勿 应用于商业,还有不正当的地方。
    2023-02-23 14:00:03下载
    积分:1
  • 多种页面进度展示
    应用背景有页面进度展示需求的app,以及对进度展示效果有需求的app关键技术自定义控件,用paint和canvas绘制ui,暴露回调给用户设置进度,拿到进度后重绘ui
    2022-08-09 20:51:08下载
    积分:1
  • android联系人带字母检索源码
    android联系人带字母检索源码/** * 联系人列表适配器。 * * @author guolin */public class ContactAdapter extends ArrayAdapter { /** * 需要渲染的item布局文件 */ private int resource; /** * 字母表分组工具 */ private SectionIndexer mIndexer; public ContactAdapter(Context context, int textViewResourceId, List objects) { super(context, textViewResourceId, objects); resource = textViewResourceId; } @Override public View getView(int position, View convertView, ViewGroup parent) { Contact contact = getItem(position); LinearLayout layout = null; if (convertView == null) { layout = (LinearLayout) LayoutInflater.from(getContext()).inflate(resource, null); } else { layout = (LinearLayout) convertView; } TextView name = (TextView) layout.findViewById(R.id.name); LinearLayout sortKeyLayout = (LinearLayout) layout.findViewById(R.id.sort_key_layout); TextView sortKey = (TextView) layout.findViewById(R.id.sort_key); name.setText(contact.getName()); int section = mIndexer.getSectionForPosition(position); if (position == mIndexer.getPositionForSection(section)) { sortKey.setText(contact.getSortKey()); sortKeyLayout.setVisibility(View.VISIBLE); } else { sortKeyLayout.setVisibility(View.GONE); } return layout; } /** * 给当前适配器传入一个分组工具。 * * @param indexer */ public void setIndexer(SectionIndexer indexer) { mIndexer = indexer; }}
    2014-04-13下载
    积分:1
  • com
    SignalA修改后的源码,支持android2.2及以上(SignalA modified source code, support android2.2 and above)
    2013-11-04 13:08:31下载
    积分:1
  • app
    说明:  掌握相册界面的开发,实现相册的立体与倒影效果(Grasp the development of album interface, realize the stereo and reflection effect of album)
    2020-06-16 08:20:02下载
    积分:1
  • android 后台发送邮件实例源码下载
    该实例用的是android下使用qq邮箱在后台发送Email
    2013-10-23下载
    积分:1
  • 自己开发的Android 直接发送短信方法附上代码
    这是一个自己开发的Android 直接发送短信方法附上代码,Android 发短信功能,包括了对内容合法性的验证,发送完成弹出提示。自己开发的直接发送短信的方法:   private void sendSMS(String telNo,String smsStr,View v){    PendingIntent pi=    PendingIntent.getActivity(this, 0, new Intent(this,Sample_11_1.class), 0);    SmsManager sms=SmsManager.getDefault();    sms.sendTextMessage(telNo, null, smsStr, pi, null);    //短信发送成功给予提示    Toast.makeText(    Sample_11_1.this, //上下文    "恭喜你,短信发送成功!", //提示内容    5000 //信息显示时间    ).show();    v.setEnabled(true);//短信发送完成后恢复发送按钮的可用状态   }   对手机号码和短信内容的验证部分:   //获取输入的电话号码   EditText etTel=(EditText)findViewById(R.id.EditText02);   String telStr=etTel.getText().toString();   //获取输入的短信内容   EditText etSms=(EditText)findViewById(R.id.EditText01);   String smsStr=etSms.getText().toString();   //判断号码字符串是否合法   if(PhoneNumberUtils.isGlobalPhoneNumber(telStr)){//合法则发送短信    v.setEnabled(false);//短信发送完成前将发送按钮设置为不可用    sendSMS(telStr,smsStr,v);   }   else{//不合法则提示    Toast.makeText(    Sample_11_1.this, //上下文    "电话号码不符合格式!!!
    2022-08-23 23:05:12下载
    积分:1
  • MusicPlayer音乐播放器
    手机音乐播放器是一种在手机上用于播放各种音乐文件的多媒体播放软件。它涵盖了各种音乐格式的播放工具,比如:手机自带播放器、MP3播放器,WMA播放器,MP4播放器等,目前手机音乐播放器主要支持的格式有MP3、WMA、AAC、AAC+、MID、AMR、OGG、MP4、FLAC等,它们在手机中运行,不仅界面美观,而且操作简单,带你进入一个完美的音乐空间。(A mobile music player is a multimedia playing software for playing various music files on a mobile phone. It covers a variety of music format playback tools, such as: mobile phone player, MP3 player, WMA player, MP4 player, etc. Currently mobile phone music player mainly supports MP3, WMA, AAC, AAC+, MID, AMR, OGG, MP4, FLAC, etc., they run in the mobile phone, not only the interface is beautiful, but also easy to operate, bringing you into a perfect music space.)
    2020-06-18 13:20:01下载
    积分:1
  • Android ListView仿微信关于界面分隔线布局
    Android ListView仿微信关于界面分隔线布局,需要用到mockable-android-23.jar,下载后请放在buildgenerated目录下。   本源码是一个安卓制作的微信界面UI编程设计的范例,属于Android界面编程的范畴,不涉及微信的功能编程。用一个模拟微信的“关于”界面,来向大家展示Listview在微信中的用法,如何修饰和自定义ListView的风格,以及分隔线的使用、字体大小及颜色的定义等,面向Android初级开发者。
    2022-04-07 04:48:00下载
    积分:1
  • 696518资源总数
  • 106222会员总数
  • 14今日下载