Pull down to record video in the same way as WeChat

Pull down to record video in the same way as WeChat

Source code introduction:

This project is a high imitation of WeChat short video + Miaopai. WeChat has launched the short video function since version 6.0. With the emergence of 4G network, video will be a trend. It can express things that words cannot express, increasing the stickiness of WeChat. Remember when the WeChat short video function was launched, it swept the circle of friends like a virus. Project source: https://github.com/motianhuo/VCameraDemo

Source code effect:

Source code snippet:

  1. package com.example.wechat01.adpter;
  2.   
  3. import android.content.Context;
  4. import android.view.LayoutInflater;
  5. import android.view.View;
  6. import android.view.ViewGroup;
  7. import android.widget.BaseAdapter;
  8. import android.widget.TextView;
  9.   
  10. import com.example.wechat01.R;
  11.   
  12. public   class NewMsgAdpter extends BaseAdapter {
  13. protected Context context;
  14. LayoutInflater mInflater;
  15.   
  16. public NewMsgAdpter(Context ctx) {
  17. context = ctx;
  18. }
  19.   
  20. @Override  
  21. public   int getCount() {
  22. return   5 ;
  23. }
  24.   
  25. @Override  
  26. public Object getItem( int position) {
  27. return   null ;
  28. }
  29.   
  30. @Override  
  31. public   long getItemId( int position) {
  32. return position;
  33. }
  34.   
  35. @Override  
  36. public View getView( int position, View convertView, ViewGroup parent) {
  37. if (convertView == null ) {
  38. convertView = LayoutInflater.from(context).inflate(
  39. R.layout.layout_item_msg, parent, false );
  40. TextView txtnum = (TextView) convertView
  41. .findViewById(R.id.unread_msg_number);
  42. if (position == 0 ) {
  43. txtnum.setVisibility(View.VISIBLE);
  44. } else {
  45. txtnum.setVisibility(View.GONE);
  46. }
  47. }
  48.   
  49. return convertView;
  50. }
  51. }

Download address: http://download..com/data/2171547

<<:  Watch is a powerful open source project abroad

>>:  The common technology terms in the IT circle that you must know in 2016

Recommend

In-depth understanding of OC/C++ closures

Author: Cui Xiaobing background Apple's Objec...

Tips for creating landing pages for advertising!

This article will share with you the techniques f...

How to become the most popular person on Douyin live streaming?

It is becoming increasingly difficult to live str...

The correct way to “value” social apps

“This is a social APP that will subvert WeChat!” ...

8 Tik Tok promotion skills to teach you how to play Tik Tok from scratch!

In the mobile era, traffic entrances were Weibo a...

In the era of burning money, what should product managers do?

This is an era of "fleecing the sheep"....

Lost in Russia, the first marketing hit in 2020

When users across the country were staying at hom...

What are the factors that affect the ups and downs of App Store rankings?

In the past half month, the rankings of many APP ...

Full process analysis of improving APP push conversion rate

An APP without message push function cannot be ca...

Problem record: Stripping of iOS user behavior statistics code

[[140437]] I have been working on a statistics mo...

Android N internal code name - New York Cheesecake

With the debut of the latest developer preview, t...

Channel Operation | If I give you 10 million, how would you spend it?

I believe that those who are involved in promotio...

Brands are mastering private domain operation strategies!

The contents of this article are as follows: Omni...