first commit

master
unknown 6 years ago
parent 16eb323fa1
commit 1b9865e7a9

@ -1,7 +1,6 @@
*.iml
.gradle
/local.properties
/.idea/caches/build_file_checksums.ser
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml

@ -1,29 +1,5 @@
<component name="ProjectCodeStyleConfiguration">
<code_scheme name="Project" version="173">
<DBN-PSQL>
<case-options enabled="false">
<option name="KEYWORD_CASE" value="lower" />
<option name="FUNCTION_CASE" value="lower" />
<option name="PARAMETER_CASE" value="lower" />
<option name="DATATYPE_CASE" value="lower" />
<option name="OBJECT_CASE" value="preserve" />
</case-options>
<formatting-settings enabled="false" />
</DBN-PSQL>
<DBN-SQL>
<case-options enabled="false">
<option name="KEYWORD_CASE" value="lower" />
<option name="FUNCTION_CASE" value="lower" />
<option name="PARAMETER_CASE" value="lower" />
<option name="DATATYPE_CASE" value="lower" />
<option name="OBJECT_CASE" value="preserve" />
</case-options>
<formatting-settings enabled="false">
<option name="STATEMENT_SPACING" value="one_line" />
<option name="CLAUSE_CHOP_DOWN" value="chop_down_if_statement_long" />
<option name="ITERATION_ELEMENTS_WRAPPING" value="chop_down_if_not_single" />
</formatting-settings>
</DBN-SQL>
<Objective-C-extensions>
<file>
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Import" />

@ -3,12 +3,13 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.example.cici.voice"
applicationId "com.friends.lmm.friends"
minSdkVersion 18
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
@ -19,13 +20,26 @@ android {
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
implementation 'com.android.support:design:27.1.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
implementation 'com.android.support:recyclerview-v7:27.1.1'
implementation 'com.lzy.widget:ninegridview:0.2.0'
//
implementation 'com.makeramen:roundedimageview:2.3.0'
//
implementation fileTree(include: ['*.jar'], dir: 'libs')
//
implementation 'com.github.bumptech.glide:glide:3.7.0'
//
implementation 'com.lzy.widget:imagepicker:+'
//
//3.5.5[1]
implementation 'cn.bmob.android:bmob-sdk:3.5.5'
//Android6.0(org.apache.http.legacy.jar)
implementation 'cn.bmob.android:http-legacy:1.0'
implementation files('libs/picasso-2.5.2.jar')
implementation 'com.github.ybq:Android-SpinKit:1.1.0'
implementation 'com.android.support:support-v13:27.1.1'
}

@ -0,0 +1,26 @@
package com.example.cici;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();
assertEquals("com.example.cici", appContext.getPackageName());
}
}

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.cici.voice" >
package="com.friends.lmm.friends">
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
@ -11,33 +11,45 @@
<uses-permission android:name="android.permission.RECEIVE_SMS" />
<uses-permission android:name="android.permission.GET_TASKS" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<!-- 允许联网 -->
<uses-permission android:name="android.permission.INTERNET" />
<!-- 获取GSM2g、WCDMA联通3g等网络状态的信息 -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<!-- 获取wifi网络状态的信息 -->
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<!-- 保持CPU 运转,屏幕和键盘灯有可能是关闭的,用于文件上传和下载 -->
<uses-permission android:name="android.permission.WAKE_LOCK" />
<!-- 获取sd卡写的权限用于文件上传和下载 -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- 允许读取手机状态 用于创建BmobInstallation -->
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<application
android:name="com.mob.MobApplication"
android:name="MyApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:icon="@mipmap/icon"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".LoginActivity" >
<activity android:name="com.example.cici.ui.LoginActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.example.cici.voice.RegistActivity" ></activity>
<activity android:name="com.example.cici.voice.ResPwdActivity" ></activity>
<activity
android:name="com.mob.tools.MobUIShell"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:configChanges="keyboardHidden|orientation|screenSize"
android:windowSoftInputMode="stateHidden|adjustResize"/>
<activity android:name="com.example.cici.ui.CommentActivity" />
<activity android:name="com.example.cici.ui.EditActivity" />
<activity android:name="com.example.cici.ui.MainActivity" />
<activity android:name="com.example.cici.ui.ResPwdActivity"/>
<activity android:name="com.example.cici.ui.RegisterActivity"></activity>
<meta-data android:name="Mob-AppKey" android:value="299f659dde262"/>
<meta-data android:name="Mob-AppSecret" android:value="3f4a4fc6406f4c97746cc972fec5785a"/>

@ -0,0 +1,79 @@
import android.app.Application;
import android.content.Context;
import android.graphics.Bitmap;
import android.widget.ImageView;
import com.bumptech.glide.Glide;
import com.example.cici.utils.ImageLoader;
import com.friends.lmm.friends.R;
import com.lzy.imagepicker.ImagePicker;
import com.lzy.imagepicker.view.CropImageView;
import com.lzy.ninegrid.NineGridView;
import cn.bmob.v3.Bmob;
public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
//在这里填写你在Bmob申请的ID
Bmob.initialize(this, "eb215dfb2a8a94afc9c871f4394c3b23");
NineGridView.setImageLoader(new GlideImageLoader());
ImagePicker imagePicker = ImagePicker.getInstance();
imagePicker.setImageLoader(new ImageLoader()); //设置图片加载器
imagePicker.setShowCamera(true); //显示拍照按钮
imagePicker.setCrop(true); //允许裁剪(单选才有效)
imagePicker.setSaveRectangle(true); //是否按矩形区域保存
imagePicker.setSelectLimit(9); //选中数量限制
imagePicker.setStyle(CropImageView.Style.RECTANGLE); //裁剪框的形状
imagePicker.setFocusWidth(800); //裁剪框的宽度。单位像素(圆形自动取宽高最小值)
imagePicker.setFocusHeight(800); //裁剪框的高度。单位像素(圆形自动取宽高最小值)
imagePicker.setOutPutX(1000);//保存文件的宽度。单位像素
imagePicker.setOutPutY(1000);//保存文件的高度。单位像素
}
private class GlideImageLoader implements NineGridView.ImageLoader {
@Override
public void onDisplayImage(Context context, ImageView imageView, String url) {
Glide.with(context).load(url)//
.placeholder(R.drawable.ic_default_image)//
.error(R.drawable.ic_default_image)//
.into(imageView);
}
@Override
public Bitmap getCacheImage(String url) {
return null;
}
}
/*
final String[] filePaths = new String[imageItems.size()];
for (int i = 0; i < imageItems.size(); i++) {
filePaths[i] = imageItems.get(i).path;
head_url_res = filePaths[0];
final User user = new User();
final BmobFile bmobFile = new BmobFile(new File(head_url_res));
bmobFile.uploadblock(new UploadFileListener() {
@Override
public void done(BmobException e) {
if (e == null) {
user.setHead(bmobFile.getFileUrl());
User user = new User();
user.setUsername(name);
user.setPassword(password);
user.signUp(new SaveListener<BmobUser>() {
@Override
public void done(BmobUser bmobUser, BmobException e) {
if (e == null) {
toast("注册成功!");
Intent intent = new Intent();
intent.setClass(RegisterActivity.this, MainActivity.class);
startActivity(intent);
finish();
} else {
toast("注册失败! " + e.toString());
}
}
*/
}

@ -0,0 +1,79 @@
package com.example.cici.adapter;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;
import com.friends.lmm.friends.R;
import com.example.cici.bean.Comment;
import com.makeramen.roundedimageview.RoundedImageView;
import com.squareup.picasso.Picasso;
import java.util.ArrayList;
public class CommentAdapter extends BaseAdapter {
private ArrayList<Comment> list;
private Context context;
public CommentAdapter(ArrayList<Comment> list, Context context) {
this.list = list;
this.context = context;
}
@Override
public int getCount() {
return list.size();
}
@Override
public Object getItem(int i) {
return list.get(i);
}
@Override
public long getItemId(int i) {
return i;
}
@Override
public View getView(int i, View view, ViewGroup viewGroup) {
ViewHolder holder;
if (view == null) {
view = LayoutInflater.from(context).inflate(R.layout.comm_item, null);
holder = new ViewHolder();
holder.tvName = (TextView) view.findViewById(R.id.tv_comm_author);
holder.head = view.findViewById(R.id.comment_item_icon);
holder.tvTime = (TextView) view.findViewById(R.id.comm_time);
holder.tvContent = (TextView) view.findViewById(R.id.tv_comm_content);
view.setTag(holder);
} else {
holder = (ViewHolder) view.getTag();
}
final Comment comment=list.get(i);
String mycontent = list.get(i).getContent();
if (mycontent == null || mycontent.length() <= 0) {
holder.tvContent.setVisibility(View.GONE);
} else {
holder.tvContent.setVisibility(View.VISIBLE);
holder.tvContent.setText(mycontent);
}
holder.tvName.setText(list.get(i).getName());
holder.tvTime.setText(list.get(i).getUpdatedAt());
Picasso.with(context).load(list.get(i).getUserHead()).into(holder.head);
return view;
}
class ViewHolder{
TextView tvName;
TextView tvContent;
TextView tvTime;
RoundedImageView head;
}
}

@ -0,0 +1,100 @@
package com.example.cici.adapter;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;
import com.friends.lmm.friends.R;
import com.example.cici.bean.Post;
import com.lzy.ninegrid.ImageInfo;
import com.lzy.ninegrid.NineGridView;
import com.lzy.ninegrid.preview.NineGridViewClickAdapter;
import com.squareup.picasso.Picasso;
import java.util.ArrayList;
import java.util.List;
public class MyAdapter extends BaseAdapter {
private List<Post> list;
private Context context;
public MyAdapter(Context context, List<Post> list) {
this.context = context;
this.list = list;
}
public void addPost(List<Post> list) {
this.list = list;
}
@Override
public int getCount() {
if (list == null)
return 0;
else
return list.size();
}
@Override
public Object getItem(int i) {
return list.get(i);
}
@Override
public long getItemId(int i) {
return i;
}
@Override
public View getView(int i, View view, ViewGroup viewGroup) {
ViewHolder holder;
if (view == null) {
view = LayoutInflater.from(context).inflate(R.layout.item_post, null);
holder = new ViewHolder();
holder.name = (TextView) view.findViewById(R.id.post_username);
holder.time = (TextView) view.findViewById(R.id.post_time);
holder.content = (TextView) view.findViewById(R.id.post_content);
holder.icon = (ImageView) view.findViewById(R.id.headIcon);
holder.nineGrid = (NineGridView) view.findViewById(R.id.post_nineGrid);
view.setTag(holder);
} else {
holder = (ViewHolder) view.getTag();
}
Picasso.with(context).load(list.get(i).getUserIcon()).into(holder.icon);
String mycontent = list.get(i).getContent();
if (mycontent == null || mycontent.length() <= 0) {
holder.content.setVisibility(View.GONE);
} else {
holder.content.setVisibility(View.VISIBLE);
holder.content.setText(mycontent);
}
holder.name.setText(list.get(i).getUserName());
holder.time.setText(list.get(i).getTime());
if (list.get(i).isHaveIcon()) {//判断是否有图片
ArrayList<ImageInfo> imageInfo = new ArrayList<>();
for (int j = 0; j < list.get(i).getHeadImgUrl().size(); j++) {
ImageInfo info = new ImageInfo();
info.setThumbnailUrl(list.get(i).getHeadImgUrl().get(j));
info.setBigImageUrl(list.get(i).getHeadImgUrl().get(j));
imageInfo.add(info);
}
holder.nineGrid.setAdapter(new NineGridViewClickAdapter(context, imageInfo));
} else {
holder.nineGrid.setVisibility(View.GONE);
}
return view;
}
private class ViewHolder {
private TextView name;
private TextView time;
private TextView content;
private ImageView icon;
private com.lzy.ninegrid.NineGridView nineGrid;
}
}

@ -0,0 +1,65 @@
package com.example.cici.bean;
import cn.bmob.v3.BmobObject;
public class Comment extends BmobObject {
/**
*
*/
private static final long serialVersionUID = 1L;
private String content;
private User user;
private Post post;
private String name;
private String time;
private String userHead;
public String getUserHead() {
return userHead;
}
public void setUserHead(String userHead) {
this.userHead = userHead;
}
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
public Post getPost() {
return post;
}
public void setPost(Post post) {
this.post = post;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}

@ -0,0 +1,71 @@
package com.example.cici.bean;
import java.util.List;
import cn.bmob.v3.BmobObject;
public class Post extends BmobObject {
private String userIcon; //头像
private String userName; // 名字
private String content; // 说说内容
private List<String> headImgUrl; //图片的URL集合
private boolean haveIcon; //判断是否有图片
private Integer praise;//点赞
private String time;//发表时间
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
public Integer getPraise() {
return praise;
}
public void setPraise(Integer praise) {
this.praise = praise;
}
public String getUserIcon() {
return userIcon;
}
public void setUserIcon(String userIcon) {
this.userIcon = userIcon;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public List<String> getHeadImgUrl() {
return headImgUrl;
}
public void setHeadImgUrl(List<String> headImgUrl) {
this.headImgUrl = headImgUrl;
}
public boolean isHaveIcon() {
return haveIcon;
}
public void setHaveIcon(boolean haveIcon) {
this.haveIcon = haveIcon;
}
}

@ -0,0 +1,93 @@
package com.example.cici.bean;
import cn.bmob.v3.BmobUser;
import cn.bmob.v3.datatype.BmobFile;
import cn.bmob.v3.datatype.BmobRelation;
public class User extends BmobUser {
private BmobRelation collect;
private String sex;
private String img_url;
private BmobFile photo;
private BmobRelation myPost;
private String head;
private String birthday;
private String phone;
public User() {
}
public String getHead() {
return head;
}
public void setHead(String head) {
this.head = head;
}
public String getImg_url() {
return img_url;
}
public void setImg_url(String img_url) {
this.img_url = img_url;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public BmobFile getPhoto() {
return photo;
}
public void setPhoto(BmobFile photo) {
this.photo = photo;
}
public BmobRelation getCollect() {
return collect;
}
public void setCollect(BmobRelation collect) {
this.collect = collect;
}
public BmobRelation getMyPost() {
return myPost;
}
public void setMyPost(BmobRelation myPost) {
this.myPost = myPost;
}
public String getBirthday() {
return birthday;
}
public void setBirthday(String birthday) {
this.birthday = birthday;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
}

@ -0,0 +1,388 @@
package com.example.cici.ui;
import android.content.Context;
import android.content.Intent;
import android.support.v7.app.AlertDialog;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.LayoutInflater;
import android.view.View;
import android.view.inputmethod.InputMethodManager;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.widget.Toast;
import com.bumptech.glide.Glide;
import com.friends.lmm.friends.R;
import com.example.cici.adapter.CommentAdapter;
import com.example.cici.bean.Comment;
import com.example.cici.bean.Post;
import com.example.cici.bean.User;
import com.example.cici.utils.MyListview;
import com.lzy.ninegrid.ImageInfo;
import com.lzy.ninegrid.NineGridView;
import com.lzy.ninegrid.preview.NineGridViewClickAdapter;
import com.makeramen.roundedimageview.RoundedImageView;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import cn.bmob.v3.BmobQuery;
import cn.bmob.v3.BmobUser;
import cn.bmob.v3.datatype.BmobPointer;
import cn.bmob.v3.exception.BmobException;
import cn.bmob.v3.listener.FindListener;
import cn.bmob.v3.listener.SaveListener;
import cn.bmob.v3.listener.UpdateListener;
public class CommentActivity extends AppCompatActivity implements View.OnClickListener{
private float mFirstY;
private float mCurrentY;
private int direction;
private int mTouchSlop;
private ArrayList<Comment> list = new ArrayList();
private CommentAdapter adapter;
private MyListview listView;
RoundedImageView head;
private Post post = new Post();
TextView tv_name, tv_time, tv_content,tv_good;
private NineGridView nineGridView;
private Button btn_reply;
private EditText repy_content,ed_comm;
private User user;
private String obj;
private AlertDialog al;
private ArrayList<String> picList = new ArrayList<>();
private LinearLayout ly_opte,area_commit;
private ImageView et_reply,back_deal,comm_share,comm_del;//返回
private Boolean isHaven;//是否存在图片
private String auhthor_url;//帖子作者id
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_comment);
init();
initListener();
getUrl();
}
/*
*/
void init() {
listView = findViewById(R.id.mylv);
tv_name = findViewById(R.id.tv_comment_username);
tv_time = findViewById(R.id.tv_comment_time);
tv_content = findViewById(R.id.tv_comment_content);
tv_good = findViewById(R.id.item_good_comment);
head = findViewById(R.id.comment_friend_icon);
btn_reply = findViewById(R.id.btn_comm);
repy_content = findViewById(R.id.ed_comm);
nineGridView = findViewById(R.id.comm_nine);
area_commit=findViewById(R.id.area_commit);
back_deal=findViewById(R.id.back_deal);
et_reply=findViewById(R.id.comm_repy);
ly_opte = findViewById(R.id.ly_opte);
comm_share=findViewById(R.id.comm_share);
comm_del=findViewById(R.id.comm_del);
tv_name.setText(getIntent().getStringExtra("username"));
tv_time.setText(getIntent().getStringExtra("time"));
tv_content.setText(getIntent().getStringExtra("content"));
String headurl = getIntent().getStringExtra("head");
tv_good.setText(getIntent().getStringExtra("goods"));
obj = getIntent().getStringExtra("obj");
if (getIntent().getStringExtra("isHaven").equals("true")){
isHaven=true;
}
post.setObjectId(obj);
Glide.with(CommentActivity.this).load(headurl).into(head);
user = BmobUser.getCurrentUser(User.class);
//user=BmobUser.getCurrentUser(User.class);
if (getIntent().getStringArrayListExtra("infoList") == null) {
nineGridView.setVisibility(View.GONE);
} else {
picList = getIntent().getStringArrayListExtra("infoList");
initPics(picList);
}
findComments();
adapter = new CommentAdapter(list, this);
listView.setAdapter(adapter);
btn_reply.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
//评论
String content = repy_content.getText().toString();
publishComment(content);
}
});
}
void initListener(){
et_reply.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
reply2();
}
});
tv_good.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
updates();//点赞
}
});
back_deal.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
CommentActivity.this.finish();//关闭详情页
}
});
comm_share.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
share();
}
});
comm_del.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
//删除帖子
del();
}
});
}
private void toast(String date) {
Toast.makeText(this, date, Toast.LENGTH_SHORT).show();
}
private void publishComment(String content) {
if (user == null) {
toast("发表评论前请先登陆");
return;
} else if (TextUtils.isEmpty(content)) {
toast("发表评论不能为空");
return;
}
showDialog_com();
final Comment comment = new Comment();
comment.setContent(content);
comment.setPost(post);
comment.setUser(user);
comment.setName(user.getUsername());
comment.setTime(getTime());
comment.setUserHead(user.getHead());
comment.save(new SaveListener<String>() {
@Override
public void done(String s, BmobException e) {
if (e == null) {
al.dismiss();
findComments();
toast("评论成功");
adapter.notifyDataSetInvalidated();
repy_content.setText("");
} else {
toast(e.toString());
al.dismiss();
}
}
});
}
/*
*/
private void findComments() {
showDialog();
BmobQuery<Comment> query = new BmobQuery<Comment>();
list.clear();
Post post = new Post();
post.setObjectId(obj);
query.addWhereEqualTo("post", new BmobPointer(post));
query.include("user,,author,post.author,comment.time,comment.user");
query.findObjects(new FindListener<Comment>() {
@Override
public void done(List<Comment> arg0, BmobException e) {
if (e == null) {
list.addAll(arg0);
//com_num = list.size();
al.dismiss();
adapter.notifyDataSetInvalidated();
} else {
al.dismiss();
toast("查询评论失败" + e.toString());
adapter.notifyDataSetChanged();
}
}
});
}
/*
*/
public String getTime() {
SimpleDateFormat formatter = new SimpleDateFormat("yyyy年MM月dd日 hh点");
Date curDate = new Date(System.currentTimeMillis());//获取当前时间
return formatter.format(curDate);
}
private void showDialog_com() {
LayoutInflater inflater = getLayoutInflater();
al = new AlertDialog.Builder(this)
.setTitle("回复评论中...")
.setView(R.layout.dialog_com)
.show();
}
/*
*/
private void hideSoftInput(){
InputMethodManager imm = (InputMethodManager)this.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(ed_comm.getWindowToken(), 0);
}
/*
*/
public void initPics(List<String> picList) {
if (picList.size() > 0) {//判断是否有图片
ArrayList<ImageInfo> imageInfo = new ArrayList<>();
for (int j = 0; j < picList.size(); j++) {
ImageInfo info = new ImageInfo();
info.setThumbnailUrl(picList.get(j));
info.setBigImageUrl(picList.get(j));
imageInfo.add(info);
}
nineGridView.setAdapter(new NineGridViewClickAdapter(CommentActivity.this, imageInfo));
} else {
nineGridView.setVisibility(View.GONE);
}
}
/*
*/
public void reply2(){
repy_content.requestFocus();
InputMethodManager imm = (InputMethodManager) repy_content.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(0, InputMethodManager.SHOW_FORCED);
}
/*
*/
private void del(){
Post p = new Post();
p.setObjectId(obj);
if (this.user.getObjectId().equals(auhthor_url)){
p.delete(new UpdateListener() {
@Override
public void done(BmobException e) {
if(e==null){
toast("删除成功");
CommentActivity.this.finish();
}else{
toast("失败:"+e.getMessage()+","+e.getErrorCode());
}
}
});
}else {
toast("您无权限删除别人发的帖子哦");
}
}
/*
objid
*/
public void getUrl() {
final String[] obj_info = {""};
final BmobQuery<BmobUser> query = new BmobQuery<BmobUser>();
query.addWhereEqualTo("username", tv_name.getText().toString());
query.findObjects(new FindListener<BmobUser>() {
@Override
public void done(List<BmobUser> list, BmobException e) {
al.dismiss();
for (BmobUser data : list) {
obj_info[0] = data.getObjectId();
auhthor_url = obj_info[0];
}
}
});
}
/*
*/
public void updates() {
Post post = new Post();
post.setObjectId(obj);
// TODO Auto-generated method stub
post.increment("praise");
//不知道什么原因点赞后图片会显消失,所以标记一下
post.setHaveIcon(isHaven);
post.update(new UpdateListener() {
@Override
public void done(BmobException e) {
if (e == null) {
toast("点赞成功!");
} else {
toast("点赞失败!");
}
}
});
}
/*
*/
public void share(){
Intent intent=new Intent(Intent.ACTION_SEND);
intent.setType("text/*");
intent.putExtra(Intent.EXTRA_SUBJECT, "分享");
intent.putExtra(Intent.EXTRA_TEXT,tv_content.getText().toString() +"_"+tv_name.getText()+"_ _来自朋友圈");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(Intent.createChooser(intent, "分享"));
}
/*
*/
private void showDialog() {
// 首先得到整个View
LayoutInflater inflater = getLayoutInflater();
al = new AlertDialog.Builder(this)
.setCancelable(false)
.setTitle("数据装载中...")
.setView(R.layout.dialog_com)
.setCancelable(true)
.show();
}
@Override
public void onClick(View view) {
switch(view.getId()){
case R.id.ed_comm:
reply2();
break;
}
}
}

@ -0,0 +1,273 @@
package com.example.cici.ui;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.inputmethod.InputMethodManager;
import android.widget.BaseAdapter;
import android.widget.EditText;
import android.widget.GridView;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
import com.friends.lmm.friends.R;
import com.example.cici.bean.Post;
import com.example.cici.utils.CircleTransform;
import com.example.cici.utils.ImageLoader;
import com.lzy.imagepicker.ImagePicker;
import com.lzy.imagepicker.bean.ImageItem;
import com.lzy.imagepicker.ui.ImageGridActivity;
import com.lzy.ninegrid.ImageInfo;
import java.io.File;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import cn.bmob.v3.BmobUser;
import cn.bmob.v3.datatype.BmobFile;
import cn.bmob.v3.exception.BmobException;
import cn.bmob.v3.listener.SaveListener;
import cn.bmob.v3.listener.UploadBatchListener;
public class EditActivity extends AppCompatActivity {
private EditText et_send;
private GridView publishGridView;
private GridAdapter gridAdapter;
private TextView tv_upload,tv_cancle;
private int size = 0;
private String content;
private BmobUser user;
private ArrayList<ImageItem> imageItems;
ProgressDialog dialog = null;//进度条
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.layout_edit);
intiView();
}
private void intiView() {
et_send= (EditText) findViewById(R.id.et_content);
tv_upload= (TextView) findViewById(R.id.tv_send);
tv_cancle=findViewById(R.id.tv_cancle);
user=BmobUser.getCurrentUser();
publishGridView= (GridView) findViewById(R.id.publishGridView);
gridAdapter = new GridAdapter();
publishGridView.setAdapter(gridAdapter);
findViewById(R.id.tv_send).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
content = et_send.getText().toString();
if (content.length() < 1 && size == 0) {
toast("发表不能为空");
} else {
tv_upload.setEnabled(false);
tv_upload_database();
}
}
});
tv_cancle.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
EditActivity.this.finish();
}
});
}
/**
*
*/
private void tv_upload_database() {
//隐藏软硬盘
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(getWindow().getDecorView().getWindowToken(), 0);
toast("发布中...");
String username=user.getUsername();
final Post post = new Post();
post.setContent(content);
post.setUserName(username);
post.setPraise(0);
post.setTime(getTime());
post.setUserIcon(getIntent().getStringExtra("headUrl"));
if (size == 0) {
post.setHaveIcon(false);
post.save(new SaveListener<String>() {
@Override
public void done(String s, BmobException e) {
if(e==null)
{
et_send.setText("");
toast("yes!发表成功");
finish();
}else {
toast("失败"+e.toString());
}
}
});
return;
}
size = 0;
final String[] filePaths = new String[imageItems.size()];
for (int i = 0; i < imageItems.size(); i++) {
filePaths[i] = imageItems.get(i).path;
}
dialog = new ProgressDialog(EditActivity.this);
dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
dialog.setTitle("上传图片中...");
dialog.setIndeterminate(false);
dialog.setCancelable(true);
dialog.setCanceledOnTouchOutside(false);
dialog.show();
BmobFile.uploadBatch(filePaths, new UploadBatchListener() {
@Override
public void onSuccess(List<BmobFile> list, List<String> list1) {
if (list1.size() == filePaths.length) {//如果数量相等,则代表文件全部上传完成
post.setHeadImgUrl(list1);
post.setHaveIcon(true);
post.save(new SaveListener<String>() {
@Override
public void done(String s, BmobException e) {
if (e == null) {
toast("发表成功");
finish();
}
}
});
}
}
@Override
public void onProgress(int i, int i1, int i2, int i3) {
dialog.setProgress(i2);
}
@Override
public void onError(int i, String s) {
dialog.dismiss();
}
});
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == ImagePicker.RESULT_CODE_ITEMS) {
if (data != null && requestCode == 100) {
ArrayList<ImageInfo> imageInfo = new ArrayList<>();
imageItems = (ArrayList<ImageItem>) data.getSerializableExtra(ImagePicker.EXTRA_RESULT_ITEMS);
gridAdapter.notifyDataSetChanged();
size=imageItems.size();
} else {
toast("没有选择图片");
}
}
}
private class GridAdapter extends BaseAdapter {
public GridAdapter() {
}
@Override
public int getCount() {
if (imageItems == null)
return 1;
else
return imageItems.size()+1;
}
@Override
public Object getItem(int i) {
return imageItems.get(i);
}
@Override
public long getItemId(int i) {
return i;
}
@Override
public View getView(final int i, View view, ViewGroup viewGroup) {
GridAdapter.ViewHolder holder = null;
if (view == null) {
holder = new GridAdapter.ViewHolder();
view = LayoutInflater.from(EditActivity.this).inflate(R.layout.grid_layout, null);
holder.image_voice = (ImageView) view.findViewById(R.id.gird_img);
view.setTag(holder);
} else {
holder = (GridAdapter.ViewHolder) view.getTag();
}
if (imageItems == null) {
holder.image_voice.setImageResource(R.mipmap.add_icon);
} else {
if (i == imageItems.size()) {
holder.image_voice.setImageResource(R.mipmap.add_icon);
} else {
File file = new File(imageItems.get(i).path);
if (file.exists()) {
Bitmap bm = BitmapFactory.decodeFile(imageItems.get(i).path);
holder.image_voice.setImageBitmap(CircleTransform.centerSquareScaleBitmap(bm,100));
}
}
}
holder.image_voice.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if ((imageItems != null && i == imageItems.size()) || imageItems == null) {
addImage();
}
}
});
return view;
}
class ViewHolder {
private ImageView image_voice;
}
}
/**
*
*/
private void addImage() {
ImagePicker imagePicker = ImagePicker.getInstance();
imagePicker.setImageLoader(new ImageLoader());
imagePicker.setMultiMode(true); //多选
imagePicker.setShowCamera(true); //显示拍照按钮
imagePicker.setSelectLimit(6); //最多选择X张
imagePicker.setCrop(false); //不进行裁剪
Intent intent = new Intent(EditActivity.this, ImageGridActivity.class);
startActivityForResult(intent, 100);
}
/*
*/
public String getTime() {
SimpleDateFormat formatter = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");
Date curDate = new Date(System.currentTimeMillis());//获取当前时间
return formatter.format(curDate);
}
//Toast
private void toast(String date){
Toast.makeText(this, date, Toast.LENGTH_SHORT).show();
}
}

@ -0,0 +1,125 @@
package com.example.cici.ui;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import com.friends.lmm.friends.R;
import com.example.cici.bean.User;
import java.util.List;
import cn.bmob.v3.BmobQuery;
import cn.bmob.v3.BmobUser;
import cn.bmob.v3.exception.BmobException;
import cn.bmob.v3.listener.FindListener;
import cn.bmob.v3.listener.SaveListener;
public class LoginActivity extends AppCompatActivity {
private EditText log_user,log_pasd;
private BmobUser user;
private Button btn_log,btn_reg;
String name,password;
boolean ishave=false;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);
log_user = (EditText) findViewById(R.id.et_username);
log_pasd = (EditText) findViewById(R.id.et_pwd);
btn_log=findViewById(R.id.btn_login);
user=BmobUser.getCurrentUser();
if (user!=null){
Intent intent = new Intent();
intent.setClass(LoginActivity.this, MainActivity.class);
startActivity(intent);
finish();
}
btn_log.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
login();
}
});
}
public void toast(String msg) {
Toast.makeText(LoginActivity.this, msg, Toast.LENGTH_SHORT).show();
}
private void login() {
// TODO Auto-generated method stub
name=log_user.getText().toString();
password=log_pasd.getText().toString();
if (name.isEmpty()) {
toast("用户名为空");
return;
}
if (password.isEmpty()) {
toast("密码为空");
return;
}
// isChecked = true;
User user = new User();
user.setUsername(name);
user.setPassword(password);
user.login(new SaveListener<BmobUser>() {
@Override
public void done(BmobUser bmobUser, BmobException e) {
if(e==null){
toast("登录成功!");
Intent intent = new Intent();
intent.setClass(LoginActivity.this, MainActivity.class);
startActivity(intent);
finish();
}else{
toast("登录失败! " + e.toString());
}
}
});
}
public void OnMyRegistClick(View v) {
Intent intent=new Intent(LoginActivity.this,RegisterActivity.class);
//intent.putExtra("info", "No66778899");
LoginActivity.this.startActivity(intent);
}
/**
* Jump to reset password interface
* @param v
*/
public void OnMyResPwdClick(View v){
Intent intent=new Intent(LoginActivity.this,ResPwdActivity.class);
LoginActivity.this.startActivity(intent);
}
private boolean isHaveUser(String user){
BmobQuery<BmobUser> query = new BmobQuery<BmobUser>();
query.addWhereEqualTo("username", user);
query.findObjects(new FindListener<BmobUser>() {
@Override
public void done(List<BmobUser> object, BmobException e) {
if(e==null){
toast("查询用户成功:"+object.size());
ishave=true;
}else{
toast("查询用户信息失败:" + e.getMessage());
}
}
});
return ishave;
}
}

@ -0,0 +1,411 @@
package com.example.cici.ui;
import android.content.DialogInterface;
import android.content.Intent;
import android.graphics.Color;
import android.support.v4.widget.SwipeRefreshLayout;
import android.support.v7.app.AlertDialog;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewTreeObserver;
import android.widget.AdapterView;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import android.widget.Toast;
import com.bumptech.glide.Glide;
import com.friends.lmm.friends.R;
import com.example.cici.adapter.MyAdapter;
import com.example.cici.bean.Post;
import com.example.cici.bean.User;
import com.example.cici.utils.GradScrollView;
import com.example.cici.utils.ImageLoader;
import com.example.cici.utils.MyListview;
import com.lzy.imagepicker.ImagePicker;
import com.lzy.imagepicker.bean.ImageItem;
import com.lzy.imagepicker.ui.ImageGridActivity;
import com.lzy.ninegrid.ImageInfo;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import cn.bmob.v3.BmobQuery;
import cn.bmob.v3.BmobUser;
import cn.bmob.v3.datatype.BmobFile;
import cn.bmob.v3.exception.BmobException;
import cn.bmob.v3.listener.FindListener;
import cn.bmob.v3.listener.QueryListener;
import cn.bmob.v3.listener.UpdateListener;
import cn.bmob.v3.listener.UploadFileListener;
public class MainActivity extends AppCompatActivity implements View.OnClickListener, GradScrollView.ScrollViewListener {
private ImageView backGroundImg;
private GradScrollView scrollView;
private RelativeLayout spaceTopChange;
private int height;
private MyAdapter adapter;
private List<Post> list;
private MyListview lv;
private SwipeRefreshLayout refresh;
private AlertDialog al;
private com.makeramen.roundedimageview.RoundedImageView userIcon;
private String headUrl = "";
private ArrayList<ImageItem> imageItems;
private BmobUser user;
private String head_url_res = "";//获得后的头像url
private String post_obj = "123";//查询帖子用户obiId
private String post_head = "1234";//查询帖子用户头像地址url
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
intiView();
intiData(0);
getUserInfo();
initListeners();
lv.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
intentToComm(i);
}
});
}
/**
*
*/
private void intiView() {
findViewById(R.id.add).setOnClickListener(this);
findViewById(R.id.back).setOnClickListener(this);
lv = (MyListview) findViewById(R.id.lv);
userIcon = findViewById(R.id.userIcon);
user = BmobUser.getCurrentUser();
backGroundImg = (ImageView) findViewById(R.id.headBkg);
backGroundImg.setFocusable(true);
backGroundImg.setFocusableInTouchMode(true);
backGroundImg.requestFocus();
scrollView = (GradScrollView) findViewById(R.id.scrollview);
spaceTopChange = (RelativeLayout) findViewById(R.id.spaceTopChange);
list = new ArrayList<>();
adapter = new MyAdapter(MainActivity.this, list);
lv.setAdapter(adapter);
//点击头像的处理,我这里是注销与切换用户,我下边写了更换头像的方法,根据自己情况选择
userIcon.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
quit();
}
});
}
/**
*
*/
private void intiData(int tag) {
if (tag == 0) {
showDialog();
}
list.clear();
BmobQuery<Post> query = new BmobQuery<>();
query.order("-createdAt");
query.setLimit(20);
query.findObjects(new FindListener<Post>() {
@Override
public void done(List<Post> lists, BmobException e) {
if (e == null) {
/* for (int i=0;i<lists.size();i++){
Post post =lists.get(i);
post.setUserIcon(getHeadUrl(queryHeadByName(lists.get(i).getUserName())));
toast(getHeadUrl(queryHeadByName(lists.get(i).getUserName())));
list.add(post);
}*/
list = lists;
adapter.addPost(list);
adapter.notifyDataSetChanged();
al.dismiss();
}
}
});
}
@Override
public void onClick(View view) {
switch (view.getId()) {
case R.id.add:
if (head_url_res.equals("")) {
toast("等待数据初始化中...");
return;
}
Intent intent = new Intent(MainActivity.this, EditActivity.class);
intent.putExtra("headUrl", head_url_res);
startActivity(intent);
break;
case R.id.back:
finish();
break;
case R.id.userIcon:
//打开相机选择头像
addHead();
break;
}
}
/**
*
*/
private void initListeners() {
ViewTreeObserver vto = backGroundImg.getViewTreeObserver();
vto.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
spaceTopChange.getViewTreeObserver().removeGlobalOnLayoutListener(
this);
height = backGroundImg.getHeight();
scrollView.setScrollViewListener(MainActivity.this);
}
});
}
/**
*
*
*/
@Override
public void onScrollChanged(GradScrollView scrollView, int x, int y, int oldx, int oldy) {
if (y <= 0) { //设置标题的背景颜色
spaceTopChange.setBackgroundColor(Color.argb(0, 144, 151, 166));
} else if (y > 0 && y <= height - 10) { //滑动距离小于banner图的高度时设置背景和字体颜色颜色透明度渐变
float scale = (float) y / height;
float alpha = (255 * scale);
spaceTopChange.setBackgroundColor(Color.argb((int) alpha, 130, 117, 140));
} else { //滑动到banner下面设置普通颜色
spaceTopChange.setBackgroundColor(Color.parseColor("#584f60"));
}
}
/*
*/
public void intentToComm(int i){
//传递数据到评论页面
Intent intent = new Intent(MainActivity.this, CommentActivity.class);
intent.putExtra("username", list.get(i).getUserName());
intent.putExtra("content", list.get(i).getContent());
intent.putExtra("time", list.get(i).getCreatedAt());
intent.putExtra("head", list.get(i).getUserIcon());
Boolean isHaven=list.get(i).isHaveIcon();
if (isHaven){
intent.putExtra("isHaven","true");
}else {
intent.putExtra("isHaven","false");
}
String good = list.get(i).getPraise().toString();
intent.putExtra("goods", good);
//如果帖子没有图片就做处理 传入空
if (list.get(i).getHeadImgUrl() != null) {
intent.putStringArrayListExtra("infoList", (ArrayList<String>) list.get(i).getHeadImgUrl());
} else {
intent.putStringArrayListExtra("infoList", null);
}
intent.putExtra("obj", list.get(i).getObjectId());
// intent.putExtra("urlList", (Parcelable) list.get(i).getHeadImgUrl());
startActivity(intent);
}
public void showDialog() {
LayoutInflater inflater = getLayoutInflater();
al = new AlertDialog.Builder(this)
.setTitle("提示")
.setView(R.layout.dialog)
.show();
}
/**
* 使
*/
private void addHead() {
ImagePicker imagePicker = ImagePicker.getInstance();
imagePicker.setImageLoader(new ImageLoader());
imagePicker.setMultiMode(false); //多选
imagePicker.setSelectLimit(1); //最多选择X张
imagePicker.setCrop(true); //不进行裁剪
Intent intent = new Intent(MainActivity.this, ImageGridActivity.class);
startActivityForResult(intent, 100);
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == ImagePicker.RESULT_CODE_ITEMS) {
if (data != null && requestCode == 100) {
ArrayList<ImageInfo> imageInfo = new ArrayList<>();
imageItems = (ArrayList<ImageItem>) data.getSerializableExtra(ImagePicker.EXTRA_RESULT_ITEMS);
changeHead();
} else {
toast("没有选择图片");
}
}
}
/*
url
*/
public void changeHead() {
final String[] filePaths = new String[imageItems.size()];
for (int i = 0; i < imageItems.size(); i++) {
filePaths[i] = imageItems.get(i).path;
headUrl = filePaths[0];
final User users = new User();
final BmobFile bmobFile = new BmobFile(new File(headUrl));
bmobFile.uploadblock(new UploadFileListener() {
@Override
public void done(BmobException e) {
if (e == null) {
users.setHead(bmobFile.getFileUrl());
users.update(user.getObjectId(), new UpdateListener() {
@Override
public void done(BmobException e) {
if (e == null) {
toast("修改成功");
}
}
});
} else {
toast("上传失败:" + e.getMessage());
}
}
@Override
public void onProgress(Integer value) {
// 返回的上传进度(百分比)
}
});
}
}
/*
*/
public void getUserInfo() {
BmobQuery<User> query = new BmobQuery<User>();
query.getObject(user.getObjectId(), new QueryListener<User>() {
@Override
public void done(User object, BmobException e) {
if (e == null) {
//获得USER的信息
head_url_res = object.getHead();
Glide.with(MainActivity.this).load(object.getHead()).into(userIcon);
} else {
}
}
});
}
/*
id
*/
public String queryHeadByName(String usernameq) {
final String[] res = {""};
BmobQuery<BmobUser> query = new BmobQuery<BmobUser>();
query.addWhereEqualTo("username", usernameq);
query.findObjects(new FindListener<BmobUser>() {
@Override
public void done(List<BmobUser> object, BmobException e) {
if (e == null) {
res[0] = object.get(0).getObjectId();
} else {
toast("更新用户信息失败:" + e.getMessage());
}
}
});
return res[0];
}
/*
id
*/
public String getHeadUrl(String objId) {
final String[] res_head = {""};
BmobQuery<User> query = new BmobQuery<User>();
query.getObject(objId, new QueryListener<User>() {
@Override
public void done(User object, BmobException e) {
if (e == null) {
//获得USER的信息
res_head[0] = object.getHead();
} else {
}
}
});
return res_head[0];
}
@Override
protected void onResume() {
super.onResume();
intiData(1);
}
//Toast
private void toast(String date) {
Toast.makeText(this, date, Toast.LENGTH_SHORT).show();
}
/*
*/
public void quit(){
al = new AlertDialog.Builder(this)
.setTitle("确定注销吗")
.setPositiveButton("确定", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
BmobUser.logOut(); //清除缓存用户对象
toast("注销成功");
Intent intent = new Intent();
intent.setClass(MainActivity.this, LoginActivity.class);
startActivity(intent);
finish();
}
})
.setNegativeButton("取消",null)
.show();
}
}

@ -0,0 +1,348 @@
package com.example.cici.ui;
import java.util.Calendar;
import android.content.Intent;
import android.os.Handler;
import android.os.Message;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.RadioButton;
import android.text.TextUtils;
import android.widget.TextView;
import android.widget.Toast;
import android.util.Log;
import android.widget.DatePicker;
import android.app.DatePickerDialog;
import android.app.DatePickerDialog.OnDateSetListener;
import com.bumptech.glide.Glide;
import com.friends.lmm.friends.R;
import com.example.cici.bean.User;
import com.example.cici.utils.ImageLoader;
import com.example.cici.utils.TimeCountUtil;
import com.lzy.imagepicker.ImagePicker;
import com.lzy.imagepicker.bean.ImageItem;
import com.lzy.imagepicker.ui.ImageGridActivity;
import com.lzy.ninegrid.ImageInfo;
import java.io.File;
import java.util.ArrayList;
import cn.bmob.v3.datatype.BmobFile;
import cn.bmob.v3.exception.BmobException;
import cn.bmob.v3.listener.SaveListener;
import cn.bmob.v3.listener.UploadFileListener;
import cn.smssdk.EventHandler;
import cn.smssdk.SMSSDK;
public class RegisterActivity extends AppCompatActivity implements View.OnClickListener{
private EditText reg_user,reg_pasd;
String name,password,male,famale,birthday;
private String head_url_res = "";//获得后的头像url
private ImageView userIcon;
private ArrayList<ImageItem> imageItems;
private EditText edit_phone;
private EditText edit_cord;
private EditText editPwd;
private EditText editName;
private TextView now;
private Button btn_getCord;
private Button btn_register;
private RadioButton mMaleRb;
private RadioButton mFamaleRb;
private String phone_number;
private String cord_number;
EventHandler eventHandler;
private TimeCountUtil mTimeCountUtil;
private int time=60;
private boolean flag=true;
private TextView tvShowDialog;
private Calendar cal;
private int year,month,day;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.regist);
getDate();
getId();
mTimeCountUtil = new TimeCountUtil(btn_getCord, 60000, 1000);
eventHandler = new EventHandler() {
public void afterEvent(int event, int result, Object data) {
Message msg=new Message();
msg.arg1=event;
msg.arg2=result;
msg.obj=data;
handler.sendMessage(msg);
}
};
SMSSDK.registerEventHandler(eventHandler);
}
private void getDate() {
cal=Calendar.getInstance();
year=cal.get(Calendar.YEAR); //获取年月日时分秒
Log.i("wxy","year"+year);
month=cal.get(Calendar.MONTH); //获取到的月份是从0开始计数
day=cal.get(Calendar.DAY_OF_MONTH);
}
@Override
protected void onDestroy() {
super.onDestroy();
SMSSDK.unregisterEventHandler(eventHandler);
}
/**
* 使HandlerMessage线
*/
Handler handler=new Handler()
{
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
int event=msg.arg1;
int result=msg.arg2;
Object data=msg.obj;
if (event == SMSSDK.EVENT_GET_VERIFICATION_CODE) {
if(result == SMSSDK.RESULT_COMPLETE) {
boolean smart = (Boolean)data;
if(smart) {
Toast.makeText(getApplicationContext(),"该手机号已经注册过,请重新输入",
Toast.LENGTH_LONG).show();
edit_phone.requestFocus();
return;
}
}
}
if(result==SMSSDK.RESULT_COMPLETE)
{
if (event == SMSSDK.EVENT_SUBMIT_VERIFICATION_CODE) {
Toast.makeText(getApplicationContext(), "验证码输入正确",
Toast.LENGTH_LONG).show();
}
}
else
{
if(flag)
{
btn_getCord.setVisibility(View.VISIBLE);
Toast.makeText(getApplicationContext(),"验证码获取失败请重新获取", Toast.LENGTH_LONG).show();
edit_phone.requestFocus();
}
else
{
Toast.makeText(getApplicationContext(),"验证码输入错误", Toast.LENGTH_LONG).show();
}
}
}
};
private void getId()
{
userIcon = findViewById(R.id.reg_head);
userIcon.setOnClickListener(this);
edit_phone=findViewById(R.id.editPhone);
edit_cord=findViewById(R.id.editCode);
btn_getCord=findViewById(R.id.btnGetcord);
btn_register=findViewById(R.id.btnRegist);
editPwd = findViewById(R.id.editPwd);
editName=findViewById(R.id.editName);
mMaleRb = findViewById(R.id.male);
mFamaleRb = findViewById(R.id.famle);
tvShowDialog= findViewById(R.id.tvShowDialog);
tvShowDialog.setOnClickListener(this);
btn_getCord.setOnClickListener(this);
btn_register.setOnClickListener(this);
}
public void onClick(View v)
{
switch (v.getId())
{
case R.id.btnGetcord:
if(judPhone())//去掉左右空格获取字符串
{
mTimeCountUtil.start();
SMSSDK.getVerificationCode("86",phone_number);
edit_cord.requestFocus();
}
break;
case R.id.btnRegist:
if(judCord())
{
SMSSDK.submitVerificationCode("86", phone_number, cord_number);
changeHead();
}
flag=false;
break;
case R.id.tvShowDialog:
OnDateSetListener listener=new OnDateSetListener() {
@Override
public void onDateSet(DatePicker arg0, int year, int month, int day) {
tvShowDialog.setText(year+"-"+(++month)+"-"+day); //将选择的日期显示到TextView中,因为之前获取month直接使用所以不需要+1这个地方需要显示所以+1
}
};
DatePickerDialog dialog=new DatePickerDialog(RegisterActivity.this, 0,listener,year,month,day);//后边三个参数为显示dialog时默认的日期月份从0开始0-11对应1-12个月
dialog.show();
break;
case R.id.reg_head:
addHead();
break;
default:
break;
}
}
private boolean judPhone()
{
if(TextUtils.isEmpty(edit_phone.getText().toString().trim()))
{
Toast.makeText(RegisterActivity.this,"请输入您的电话号码",Toast.LENGTH_LONG).show();
edit_phone.requestFocus();
return false;
}
else if(edit_phone.getText().toString().trim().length()!=11)
{
Toast.makeText(RegisterActivity.this,"您的电话号码位数不正确",Toast.LENGTH_LONG).show();
edit_phone.requestFocus();
return false;
}
else
{
phone_number=edit_phone.getText().toString().trim();
String num="[1][358]\\d{9}";
if(phone_number.matches(num))
return true;
else
{
Toast.makeText(RegisterActivity.this,"请输入正确的手机号码",Toast.LENGTH_LONG).show();
return false;
}
}
}
private boolean judCord()
{
judPhone();
if(TextUtils.isEmpty(edit_cord.getText().toString().trim()))
{
Toast.makeText(RegisterActivity.this,"请输入您的验证码",Toast.LENGTH_LONG).show();
edit_cord.requestFocus();
return false;
}
else if(edit_cord.getText().toString().trim().length()!=4)
{
Toast.makeText(RegisterActivity.this,"您的验证码位数不正确",Toast.LENGTH_LONG).show();
edit_cord.requestFocus();
return false;
}
else
{
cord_number=edit_cord.getText().toString().trim();
return true;
}
}
/**
*
*/
private void addHead() {
ImagePicker imagePicker = ImagePicker.getInstance();
imagePicker.setImageLoader(new ImageLoader());
imagePicker.setMultiMode(false); //多选
imagePicker.setSelectLimit(1); //最多选择X张
imagePicker.setCrop(true); //不进行裁剪
Intent intent = new Intent(RegisterActivity.this, ImageGridActivity.class);
startActivityForResult(intent, 100);
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == ImagePicker.RESULT_CODE_ITEMS) {
if (data != null && requestCode == 100) {
ArrayList<ImageInfo> imageInfo = new ArrayList<>();
imageItems = (ArrayList<ImageItem>) data.getSerializableExtra(ImagePicker.EXTRA_RESULT_ITEMS);
String[] filePaths = new String[imageItems.size()];
filePaths[0] = imageItems.get(0).path;
head_url_res = filePaths[0];
Glide.with(RegisterActivity.this).load(head_url_res).into(userIcon);
} else {
toast("没有选择图片");
}
}
}
/*
url
*/
public void changeHead() {
name =editName.getText().toString();
password=editPwd.getText().toString();
phone_number=edit_phone.getText().toString();
birthday=tvShowDialog.getText().toString();
male=mMaleRb.getText().toString();
famale=mFamaleRb.getText().toString();
final String[] filePaths = new String[imageItems.size()];
for (int i = 0; i < imageItems.size(); i++) {
filePaths[i] = imageItems.get(i).path;
head_url_res = filePaths[0];
toast("注册中请稍等...");
final BmobFile bmobFile = new BmobFile(new File(head_url_res));
bmobFile.uploadblock(new UploadFileListener() {
@Override
public void done(BmobException e) {
if (e==null){
User user = new User();
user.setUsername(name);
user.setPassword(password);
if(mMaleRb.isChecked()) user.setSex(male);
else user.setSex(famale);
user.setBirthday(birthday);
user.setPhone(phone_number);
user.setHead(bmobFile.getFileUrl());
user.signUp(new SaveListener<User>() {
@Override
public void done(User s, BmobException e) {
if(e==null){
toast("注册成功:" +s.toString());
Intent intent = new Intent();
intent.setClass(RegisterActivity.this, MainActivity.class);
startActivity(intent);
finish();
}else{
toast("注册失败,可能用户名已存在" );
}
}
});
}
}
});
}
}
public void toast(String msg) {
Toast.makeText(RegisterActivity.this, msg, Toast.LENGTH_SHORT).show();
}
}

@ -0,0 +1,105 @@
package com.example.cici.ui;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.text.TextUtils;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import com.friends.lmm.friends.R;
import java.util.List;
import cn.bmob.v3.BmobQuery;
import cn.bmob.v3.BmobUser;
import cn.bmob.v3.exception.BmobException;
import cn.bmob.v3.listener.FindListener;
public class ResPwdActivity extends AppCompatActivity {
private EditText editUsername;
private EditText editPwd;
private EditText editResPwd;
private String name,password;
private Button btnConfirm;
boolean ishave=false;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.res_password);
editUsername = findViewById(R.id.editName);
editPwd = findViewById(R.id.editPwd);
editResPwd = findViewById(R.id.editResPwd);
btnConfirm = findViewById(R.id.btnConfirm);
}
/**
* confirm event
* @param v
*/
public void OnMyConfirmClick(View v) {
confirmInfo();
}
/**
* confirm event
*/
private void confirmInfo() {
name=editUsername.getText().toString();
if(TextUtils.isEmpty(editUsername.getText().toString().trim())|| TextUtils.isEmpty(editPwd.getText().toString()) || TextUtils.isEmpty(editResPwd.getText().toString())){
Toast.makeText(this, "账号或密码不能为空!", Toast.LENGTH_SHORT).show();
return;
}
if(!editPwd.getText().toString().equals(editResPwd.getText().toString())) {
Toast.makeText(this, "输入密码不正确!", Toast.LENGTH_SHORT).show();
return;
}
isHaveUser(name);
if(ishave){
Toast.makeText(this, "密码重置成功!", Toast.LENGTH_SHORT).show();
this.finish();
}
else{
new AlertDialog.Builder(this)
.setTitle("提示")
.setMessage("该用户不存在,请到注册界面进行注册!")
.setPositiveButton("确定", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
setResult(RESULT_OK);
Intent intent=new Intent(ResPwdActivity.this,RegisterActivity.class);
ResPwdActivity.this.startActivity(intent);
}
})
.setNegativeButton("取消", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
return;
}
})
.show();
}
}
private boolean isHaveUser(String user){
BmobQuery<BmobUser> query = new BmobQuery<BmobUser>();
query.addWhereEqualTo("username", user);
query.findObjects(new FindListener<BmobUser>() {
@Override
public void done(List<BmobUser> object, BmobException e) {
if(e==null){
ishave=true;
}
}
});
return ishave;
}
public void toast(String msg) {
Toast.makeText(ResPwdActivity.this, msg, Toast.LENGTH_SHORT).show();
}
}

@ -0,0 +1,57 @@
package com.example.cici.utils;
import android.graphics.Bitmap;
/**
* Created by Andream on 2017/10/19.
*
*/
public class CircleTransform {
/**
* @param bitmap
* @param edgeLength
* @return
*/
public static Bitmap centerSquareScaleBitmap(Bitmap bitmap, int edgeLength)
{
if(null == bitmap || edgeLength <= 0)
{
return null;
}
Bitmap result = bitmap;
int widthOrg = bitmap.getWidth();
int heightOrg = bitmap.getHeight();
if(widthOrg > edgeLength && heightOrg > edgeLength)
{
//压缩到一个最小长度是edgeLength的bitmap
int longerEdge = (int)(edgeLength * Math.max(widthOrg, heightOrg) / Math.min(widthOrg, heightOrg));
int scaledWidth = widthOrg > heightOrg ? longerEdge : edgeLength;
int scaledHeight = widthOrg > heightOrg ? edgeLength : longerEdge;
Bitmap scaledBitmap;
try{
scaledBitmap = Bitmap.createScaledBitmap(bitmap, scaledWidth, scaledHeight, true);
}
catch(Exception e){
return null;
}
//从图中截取正中间的正方形部分。
int xTopLeft = (scaledWidth - edgeLength) / 2;
int yTopLeft = (scaledHeight - edgeLength) / 2;
try{
result = Bitmap.createBitmap(scaledBitmap, xTopLeft, yTopLeft, edgeLength, edgeLength);
scaledBitmap.recycle();
}
catch(Exception e){
return null;
}
}
return result;
}
}

@ -0,0 +1,47 @@
package com.example.cici.utils;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.ScrollView;
/**
* Created by Andream on 2017/10/19.
*
*/
public class GradScrollView extends ScrollView {
public interface ScrollViewListener {
void onScrollChanged(GradScrollView scrollView, int x, int y,
int oldx, int oldy);
}
private ScrollViewListener scrollViewListener = null;
public GradScrollView(Context context) {
super(context);
}
public GradScrollView(Context context, AttributeSet attrs,
int defStyle) {
super(context, attrs, defStyle);
}
public GradScrollView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public void setScrollViewListener(ScrollViewListener scrollViewListener) {
this.scrollViewListener = scrollViewListener;
}
@Override
protected void onScrollChanged(int x, int y, int oldx, int oldy) {
super.onScrollChanged(x, y, oldx, oldy);
if (scrollViewListener != null) {
scrollViewListener.onScrollChanged(this, x, y, oldx, oldy);
}
}
}

@ -0,0 +1,38 @@
package com.example.cici.utils;
import android.app.Activity;
import android.net.Uri;
import android.widget.ImageView;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;
import java.io.File;
/**
* Created by Andream on 2017/10/19.
*
*/
public class ImageLoader implements com.lzy.imagepicker.loader.ImageLoader{
@Override
public void displayImage(Activity activity, String path, ImageView imageView, int width, int height) {
Glide.with(activity) //配置上下文
.load(Uri.fromFile(new File(path))) //设置图片路径(fix #8,文件名包含%符号 无法识别和显示)
.diskCacheStrategy(DiskCacheStrategy.ALL)//缓存全尺寸
.into(imageView);
}
@Override
public void displayImagePreview(Activity activity, String path, ImageView imageView, int width, int height) {
Glide.with(activity) //配置上下文
.load(Uri.fromFile(new File(path))) //设置图片路径(fix #8,文件名包含%符号 无法识别和显示)
.diskCacheStrategy(DiskCacheStrategy.ALL)//缓存全尺寸
.into(imageView);
}
@Override
public void clearMemoryCache() {
}
}

@ -0,0 +1,35 @@
package com.example.cici.utils;
/**
* Created by Andream on 2017/10/19.
* listview
*/
import android.content.Context;
import android.util.AttributeSet;
import android.widget.ListView;
public class MyListview extends ListView {
public MyListview(Context context) {
// TODO Auto-generated method stub
super(context);
}
public MyListview(Context context, AttributeSet attrs) {
// TODO Auto-generated method stub
super(context, attrs);
}
public MyListview(Context context, AttributeSet attrs, int defStyle) {
// TODO Auto-generated method stub
super(context, attrs, defStyle);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
// TODO Auto-generated method stub
int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,
MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, expandSpec);
}
}

@ -0,0 +1,29 @@
package com.example.cici.utils;
import android.os.CountDownTimer;
import android.widget.Button;
public class TimeCountUtil extends CountDownTimer {
private Button mButton;
public TimeCountUtil(Button button, long millisInFuture, long countDownInterval) {
super(millisInFuture, countDownInterval);
this.mButton = button;
}
@Override
public void onTick(long millisUntilFinished) {
// 按钮不可用
mButton.setEnabled(false);
String showText = millisUntilFinished / 1000 + "秒后可重新发送";
mButton.setText(showText);
}
@Override
public void onFinish() {
// 按钮设置可用
mButton.setEnabled(true);
mButton.setText("重新获取验证码");
}
}

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<!-- <gradient
6 android:angle="45"
7 android:endColor="#CCCCCC"
8 android:startColor="#CCCCCC" /> -->
<padding
android:bottom="7dp"
android:left="7dp"
android:right="7dp"
android:top="7dp" />
<!-- 设置圆角矩形 -->
<corners android:radius="8dp" />
<stroke
android:width="5px"
android:color="#FFF" />
<solid android:color="#fff" />
</shape>

@ -1,74 +1,170 @@
<?xml version="1.0" encoding="utf-8"?>
<vector
android:height="108dp"
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportHeight="108"
android:viewportWidth="108"
xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#008577"
android:viewportWidth="108">
<path
android:fillColor="#26A69A"
android:pathData="M0,0h108v108h-108z" />
<path android:fillColor="#00000000" android:pathData="M9,0L9,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,0L19,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M29,0L29,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M39,0L39,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M49,0L49,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M59,0L59,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M69,0L69,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M79,0L79,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M89,0L89,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M99,0L99,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,9L108,9"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,19L108,19"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,29L108,29"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,39L108,39"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,49L108,49"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,59L108,59"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,69L108,69"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,79L108,79"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,89L108,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,99L108,99"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,29L89,29"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,39L89,39"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,49L89,49"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,59L89,59"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,69L89,69"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,79L89,79"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M29,19L29,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M39,19L39,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M49,19L49,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M59,19L59,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M69,19L69,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M79,19L79,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeColor="#33FFFFFF"
android:strokeWidth="0.8" />
</vector>

@ -0,0 +1,230 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<include layout="@layout/head" ></include>
<com.example.cici.utils.GradScrollView
android:layout_marginTop="50dp"
android:id="@+id/scrollview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">
<LinearLayout
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="100dp">
<TextView
android:id="@+id/tv_comment_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/comment_friend_icon"
android:layout_alignStart="@+id/tv_comment_username"
android:text="2018:8/1/14:01" />
<TextView
android:id="@+id/tv_comment_username"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignTop="@+id/comment_friend_icon"
android:layout_marginStart="104dp"
android:text="Ycc"
android:textColor="@android:color/holo_red_dark"
android:textSize="20sp"
android:textStyle="bold" />
<com.makeramen.roundedimageview.RoundedImageView
android:id="@+id/comment_friend_icon"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:layout_marginStart="16dp"
android:src="@mipmap/defhead"
app:riv_border_color="@color/colorPrimary"
app:riv_border_width="2dip"
app:riv_corner_radius="30dip"
app:riv_mutate_background="true"
app:riv_oval="true"
app:riv_tile_mode="clamp" />
<View
android:layout_width="match_parent"
android:background="#ccc"
android:layout_below="@id/tv_comment_time"
android:layout_marginTop="3dp"
android:layout_height="2dp">
</View>
</RelativeLayout>
<LinearLayout
android:id="@+id/ly_opte"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="wrap_content">
<TextView
android:id="@+id/tv_comment_content"
android:layout_width="wrap_content"
android:textSize="19sp"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginTop="4dp"
android:textColor="@android:color/black"
android:text="这程序员谁爱当谁当" />
<com.lzy.ninegrid.NineGridView
android:id="@+id/comm_nine"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp"
app:ngv_gridSpacing="4dp"
app:ngv_maxSize="9"
app:ngv_mode="grid"
app:ngv_singleImageRatio="1"
app:ngv_singleImageSize="150dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<TextView
android:id="@+id/item_good_comment"
android:layout_width="wrap_content"
android:onClick="good"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_gravity="center"
android:layout_below="@id/tv_comm_content"
android:drawableLeft="@mipmap/good_black"
android:gravity="center"
android:text="156"
android:textColor="#888888"
android:layout_marginTop="4dip"
android:layout_marginBottom="4dip"
android:layout_marginLeft="8dip"
android:layout_marginRight="8dip"
/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<ImageView
android:id="@+id/comm_repy"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_marginTop="5dp"
android:layout_alignParentRight="true"
android:layout_marginRight="8dp"
android:src="@mipmap/say" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/comm_share"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_marginTop="5dp"
android:layout_alignParentRight="true"
android:layout_marginRight="8dp"
android:src="@mipmap/shape" />
</RelativeLayout>
</LinearLayout>
</LinearLayout>
<View
android:layout_width="match_parent"
android:background="#ccc"
android:layout_marginTop="2dp"
android:layout_height="1dp">
</View>
</LinearLayout><!-- post content end -->
<com.example.cici.utils.MyListview
android:id="@+id/mylv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="3dp"
android:divider="#dedede"
android:dividerHeight="1dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="45dp">
</LinearLayout>
</LinearLayout>
</com.example.cici.utils.GradScrollView>
<LinearLayout
android:layout_alignParentBottom="true"
android:id="@+id/area_commit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<EditText
android:id="@+id/ed_comm"
android:hint="说两句"
android:focusable="true"
android:focusableInTouchMode="true"
android:layout_weight="1"
android:background="@color/white"
android:layout_width="match_parent"
android:layout_height="45dp" />
<Button
android:id="@+id/btn_comm"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginRight="0dp"
android:background="@android:color/holo_red_dark"
android:layout_weight="3"
android:onClick="reply"
android:padding="3dp"
android:text="发表"
android:textColor="@color/white" />
</LinearLayout>
</RelativeLayout>

@ -0,0 +1,81 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteY="81dp">
<!-- input account -->
<EditText
android:id="@+id/et_username"
style="@style/textstyle"
android:layout_width="fill_parent"
android:layout_marginTop="96dp"
android:layout_marginEnd="4dp"
android:hint="用户名"
android:inputType="textPersonName"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
android:singleLine="true"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints" />
<!-- input pwd -->
<EditText
android:id="@+id/et_pwd"
style="@style/textstyle"
android:layout_width="fill_parent"
android:layout_marginTop="76dp"
android:hint="密码"
android:lines="1"
android:maxLength="16"
android:password="true"
android:singleLine="true"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/et_username" />
<!-- the login button -->
<Button
android:id="@+id/btn_login"
style="@style/textstyle"
android:layout_width="fill_parent"
android:layout_marginTop="8dp"
android:layout_marginBottom="124dp"
android:onClick="OnMyLoginClick"
android:text="@string/login"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/et_pwd"
app:layout_constraintVertical_bias="0.793" />
<TextView
android:id="@+id/txtForgetPwd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginBottom="80dp"
android:clickable="true"
android:onClick="OnMyResPwdClick"
android:text="忘记密码"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/txtStartRegist"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginEnd="24dp"
android:layout_marginBottom="76dp"
android:clickable="true"
android:gravity="center"
android:onClick="OnMyRegistClick"
android:text="立即注册"
android:textSize="15sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
</android.support.constraint.ConstraintLayout>

@ -1,19 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:id="@+id/content_main"
android:layout_height="match_parent"
tools:context=".MainActivity">
android:orientation="vertical"
tools:context="com.example.cici.ui.MainActivity">
<include layout="@layout/content_main" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
</LinearLayout>

@ -0,0 +1,69 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<RelativeLayout
android:id="@+id/rl_post"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true">
<TextView
android:id="@+id/tv_comm_author"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignTop="@+id/comment_item_icon"
android:layout_marginStart="66dp"
android:text="技术鸟"
android:textColor="@android:color/holo_red_dark"
android:textSize="15sp" />
<com.makeramen.roundedimageview.RoundedImageView
android:id="@+id/comment_item_icon"
android:layout_width="45dp"
android:layout_height="45dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="14dp"
android:src="@mipmap/defhead"
app:riv_border_color="@color/colorPrimary"
app:riv_border_width="2dip"
app:riv_corner_radius="30dip"
app:riv_mutate_background="true"
app:riv_oval="true"
app:riv_tile_mode="clamp" />
<TextView
android:id="@+id/tv_comm_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignStart="@+id/tv_comm_author"
android:layout_marginTop="40dp"
android:text="纵观技术的发展,紧跟时代的潮流,"
android:textColor="@android:color/black"
android:textSize="18sp" />
<TextView
android:id="@+id/comm_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@id/tv_comm_content"
android:layout_marginRight="3dp"
android:layout_marginTop="4dp"
android:text="一天前"
android:layout_marginBottom="3dp"
android:textSize="13sp" />
</RelativeLayout>
</RelativeLayout>

@ -0,0 +1,150 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/content_main"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.example.cici.ui.MainActivity"
tools:showIn="@layout/activity_main">
<com.example.cici.utils.GradScrollView
android:id="@+id/scrollview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="250dp">
<ImageView
android:id="@+id/headBkg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@mipmap/bg"
android:scaleType="fitXY" />
<com.makeramen.roundedimageview.RoundedImageView
android:id="@+id/userIcon"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_marginLeft="20dp"
android:layout_marginTop="130dp"
app:riv_border_color="@color/colorPrimary"
app:riv_border_width="2dip"
app:riv_corner_radius="30dip"
android:src="@mipmap/defhead"
app:riv_mutate_background="true"
app:riv_oval="true"
app:riv_tile_mode="clamp" />
<LinearLayout
android:id="@+id/menu_friend"
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_alignParentBottom="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
<TextView
style="@style/TextView"
android:text="语音" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
<TextView
style="@style/TextView"
android:text="广场" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
<TextView
style="@style/TextView"
android:text="消息" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
<TextView
style="@style/TextView"
android:text="我的" />
</RelativeLayout>
</LinearLayout>
</RelativeLayout>
<com.example.cici.utils.MyListview
android:id="@+id/lv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:divider="#dedede"
android:dividerHeight="14dp" />
</LinearLayout>
</com.example.cici.utils.GradScrollView>
<RelativeLayout
android:id="@+id/spaceTopChange"
android:layout_width="match_parent"
android:layout_height="55dp"
android:background="#003793c7">
<ImageView
android:id="@+id/back"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_centerVertical="true"
android:layout_marginLeft="5dp"
android:src="@mipmap/left_arrow" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="广场动态"
android:textColor="@color/white"
android:textSize="17sp" />
<ImageView
android:id="@+id/add"
android:layout_width="28dp"
android:layout_height="28dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="10dp"
android:src="@mipmap/addpost" />
</RelativeLayout>
</RelativeLayout>

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:text="加载中..."
android:textSize="15dp"
android:layout_height="wrap_content"
android:layout_marginTop="33dp"
android:id="@+id/textView2"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView2"
android:layout_centerHorizontal="true"
android:layout_marginTop="14dp" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/progressBar"
android:layout_centerHorizontal="true"
android:layout_marginTop="21dp"
android:text="" />
<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignEnd="@+id/textView3"
android:layout_below="@+id/textView3"
android:layout_marginTop="10dp"
android:text="" />
</RelativeLayout>

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ProgressBar
android:id="@+id/progressBar2"
style="?android:attr/progressBarStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>

@ -0,0 +1,9 @@
<?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">
<ImageView
android:layout_width="80dp"
android:id="@+id/gird_img"
android:layout_height="80dp" />
</LinearLayout>

@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:background="@color/colorAccent"
android:layout_height="50dp">
<RelativeLayout
android:id="@+id/spaceTopChange"
android:layout_width="match_parent"
android:layout_height="55dp"
android:background="#003793c7">
<ImageView
android:id="@+id/comm_del"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:layout_marginRight="5dp"
app:srcCompat="@mipmap/del" />
<ImageView
android:id="@+id/back_deal"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_centerVertical="true"
android:layout_marginLeft="5dp"
android:src="@mipmap/left_arrow" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="详情"
android:textColor="@color/white"
android:textSize="19sp" />
</RelativeLayout>
</LinearLayout>

@ -0,0 +1,158 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="70dp">
<com.makeramen.roundedimageview.RoundedImageView
android:id="@+id/headIcon"
android:layout_width="50dp"
android:src="@mipmap/defhead"
android:layout_height="50dp"
android:layout_gravity="center"
android:layout_marginLeft="5dp"
app:riv_border_color="@color/colorPrimary"
app:riv_border_width="2dip"
app:riv_corner_radius="30dip"
app:riv_mutate_background="true"
app:riv_oval="true"
app:riv_tile_mode="clamp" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginLeft="10dp"
android:orientation="vertical">
<TextView
android:id="@+id/post_username"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="忘了爱"
android:textColor="@color/text"
android:textSize="20sp" />
<TextView
android:id="@+id/post_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:text="2018/08/01" />
</LinearLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:src="@mipmap/down_arrow" />
</RelativeLayout>
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:id="@+id/post_content"
android:textSize="18sp"
android:textColor="@color/text"
android:layout_marginLeft="17dp"
android:layout_height="wrap_content" />
<com.lzy.ninegrid.NineGridView
android:id="@+id/post_nineGrid"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp"
app:ngv_gridSpacing="4dp"
app:ngv_maxSize="9"
app:ngv_mode="grid"
app:ngv_singleImageRatio="1"
app:ngv_singleImageSize="250dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginLeft="5dp">
<ImageView
android:layout_width="15dp"
android:layout_height="15dp"
android:src="@mipmap/phone" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Android" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<ImageView
android:id="@+id/post_good"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_alignParentRight="true"
android:layout_marginRight="8dp"
android:src="@mipmap/good_black" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<ImageView
android:id="@+id/post_repy"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_alignParentRight="true"
android:layout_marginRight="8dp"
android:src="@mipmap/say" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/post_share"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_alignParentRight="true"
android:layout_marginRight="8dp"
android:src="@mipmap/shape" />
</RelativeLayout>
</LinearLayout>
</LinearLayout>
</LinearLayout>

@ -0,0 +1,64 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_marginTop="11dp"
android:layout_height="50dp">
<TextView
android:id="@+id/tv_send"
android:textStyle="bold"
android:textSize="17dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_marginRight="7dp"
android:textColor="@android:color/holo_green_dark"
android:layout_centerVertical="true"
android:text="发表" />
<TextView
android:id="@+id/tv_cancle"
android:textStyle="bold"
android:textSize="17dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:textColor="@android:color/black"
android:layout_marginStart="11dp"
android:text="取消" />
</RelativeLayout>
<LinearLayout
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_marginTop="10dp"
android:layout_height="wrap_content">
<EditText
android:id="@+id/et_content"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_marginLeft="20dp"
android:layout_margin="10dp"
android:background="#00000000"
android:hint="这一刻的想法..." />
<GridView
android:id="@+id/publishGridView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="4dp"
android:horizontalSpacing="4dp"
android:numColumns="4"
android:verticalSpacing="5dp" />
</LinearLayout>
</LinearLayout>

@ -0,0 +1,205 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="100dp">
<TextView
android:id="@+id/tv_comment_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/comment_friend_icon"
android:layout_alignStart="@+id/tv_comment_username"
android:text="2018:8/1/14:01" />
<TextView
android:id="@+id/tv_comment_username"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignTop="@+id/comment_friend_icon"
android:layout_marginStart="104dp"
android:text="李明明"
android:textColor="@android:color/holo_red_dark"
android:textSize="20sp"
android:textStyle="bold" />
<com.makeramen.roundedimageview.RoundedImageView
android:id="@+id/comment_friend_icon"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_alignParentStart="true"
android:layout_centerVertical="true"
android:layout_marginStart="16dp"
android:src="@mipmap/defhead"
app:riv_border_color="@color/colorPrimary"
app:riv_border_width="2dip"
app:riv_corner_radius="30dip"
app:riv_mutate_background="true"
app:riv_oval="true"
app:riv_tile_mode="clamp" />
</RelativeLayout>
<View
android:layout_width="match_parent"
android:background="#ccc"
android:layout_marginTop="2dp"
android:layout_height="2dp">
</View>
<LinearLayout
android:id="@+id/ly_opte"
android:layout_width="match_parent"
android:orientation="vertical"
android:background="#fff"
android:layout_height="wrap_content">
<TextView
android:id="@+id/tv_comment_content"
android:layout_width="wrap_content"
android:textSize="19sp"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginTop="4dp"
android:textColor="@android:color/black"
android:text="希望我万事都如意" />
<com.lzy.ninegrid.NineGridView
android:id="@+id/comm_nine"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp"
app:ngv_gridSpacing="4dp"
app:ngv_maxSize="9"
app:ngv_mode="grid"
app:ngv_singleImageRatio="1"
app:ngv_singleImageSize="200dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<TextView
android:id="@+id/item_good_comment"
android:layout_width="wrap_content"
android:onClick="good"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_gravity="center"
android:layout_below="@id/tv_comm_content"
android:drawableLeft="@mipmap/good_black"
android:gravity="center"
android:text="156"
android:textColor="#888888"
android:layout_marginTop="4dip"
android:layout_marginBottom="4dip"
android:layout_marginLeft="8dip"
android:layout_marginRight="8dip"
/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<ImageView
android:id="@+id/comm1_repy"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_marginTop="5dp"
android:layout_alignParentRight="true"
android:layout_marginRight="8dp"
android:src="@mipmap/say" />
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/comm_share1"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_marginTop="5dp"
android:layout_alignParentRight="true"
android:layout_marginRight="8dp"
android:src="@mipmap/shape" />
</RelativeLayout>
</LinearLayout>
</LinearLayout>
<View
android:layout_width="match_parent"
android:background="#ccc"
android:layout_marginTop="2dp"
android:layout_height="1dp">
</View>
</LinearLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ListView
android:id="@+id/comment_lv"
android:layout_width="match_parent"
android:layout_height="match_parent">
</ListView>
<LinearLayout
android:id="@+id/area_commit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_alignParentBottom="true"
android:padding="4dip"
android:gravity="center_vertical"
>
<EditText
android:id="@+id/ed_comm"
android:hint="说两句"
android:focusable="true"
android:focusableInTouchMode="true"
android:layout_weight="1"
android:background="@color/white"
android:layout_width="match_parent"
android:layout_height="45dp" />
<Button
android:id="@+id/btn_comm"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginRight="4dp"
android:background="@android:color/holo_red_dark"
android:layout_weight="3"
android:onClick="reply"
android:padding="3dp"
android:text="发表"
android:textColor="@color/white" />
</LinearLayout>
</RelativeLayout>
</LinearLayout>

@ -6,6 +6,19 @@
android:layout_height="match_parent"
tools:layout_editor_absoluteY="81dp">
<ImageView
android:id="@+id/reg_head"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:src="@mipmap/choosehead"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/tvShowDialog"
@ -14,13 +27,12 @@
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginStart="8dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="8dp"
android:gravity="center"
android:text="出生年月日"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.503"
app:layout_constraintHorizontal_bias="0.502"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/editPwd" />
@ -28,14 +40,14 @@
android:id="@+id/editPhone"
style="@style/textstyle"
android:layout_width="fill_parent"
android:layout_marginTop="8dp"
android:layout_marginTop="12dp"
android:hint="手机号"
android:inputType="number"
android:lines="1"
android:maxLength="11"
android:singleLine="true"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.454"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tableRow"
tools:ignore="MissingConstraints" />
@ -60,8 +72,8 @@
style="@style/textstyle"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_marginEnd="44dp"
android:layout_marginBottom="48dp"
android:layout_marginEnd="4dp"
android:layout_marginBottom="80dp"
android:onClick="OnMyRegistClick"
android:text="@string/regist"
app:layout_constraintBottom_toBottomOf="parent"
@ -74,7 +86,7 @@
android:layout_height="45dp"
android:layout_below="@+id/editPhone"
android:layout_alignStart="@+id/btnRegist"
android:layout_marginStart="16dp"
android:layout_marginStart="4dp"
android:layout_marginTop="28dp"
android:layout_marginBottom="8dp"
android:ems="10"
@ -83,6 +95,7 @@
app:layout_constraintBottom_toTopOf="@+id/btnRegist"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/editPhone"
app:layout_constraintVertical_bias="0.0"
tools:ignore="MissingConstraints" />
<Button
@ -97,12 +110,12 @@
android:layout_marginBottom="16dp"
android:background="@color/colorPrimary"
android:text="获取验证码"
android:textColor="@color/colorAccent"
app:layout_constraintBottom_toTopOf="@+id/btnRegist"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toEndOf="@+id/editCode"
app:layout_constraintTop_toBottomOf="@+id/editPhone"
app:layout_constraintVertical_bias="0.277"
tools:ignore="MissingConstraints" />
<EditText
@ -110,6 +123,7 @@
android:layout_width="fill_parent"
android:layout_height="48dp"
android:layout_marginTop="8dp"
android:ems="10"
android:gravity="center"
android:hint="用户名"
@ -117,18 +131,17 @@
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintTop_toBottomOf="@+id/reg_head"
tools:ignore="MissingConstraints" />
<TableRow
android:id="@+id/tableRow"
android:layout_width="282dp"
android:layout_height="38dp"
android:layout_height="28dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.636"
app:layout_constraintHorizontal_bias="0.372"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tvShowDialog">

@ -17,14 +17,15 @@
android:textSize="24sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
tools:layout_editor_absoluteY="52dp" />
tools:layout_editor_absoluteY="52dp"
tools:ignore="MissingConstraints" />
<!-- input phone -->
<EditText
android:id="@+id/editPhone"
android:id="@+id/editName"
style="@style/textstyle"
android:layout_width="fill_parent"
android:layout_marginTop="8dp"
android:hint="请输入注册的手机号"
android:hint="请输入用户名"
android:inputType="number"
android:lines="1"
android:maxLength="11"

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 688 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 424 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 424 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 278 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 525 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 353 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 565 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.9 KiB

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

@ -1,6 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#008577</color>
<color name="colorPrimaryDark">#00574B</color>
<color name="colorAccent">#D81B60</color>
<color name="colorPrimary">#584f60</color>
<color name="colorPrimaryDark">#584f60</color>
<color name="colorAccent">#584f60</color>
<color name="white">#fff</color>
<color name="text">#383636</color>
</resources>

@ -0,0 +1,3 @@
<resources>
<dimen name="fab_margin">16dp</dimen>
</resources>

@ -1,10 +1,9 @@
<resources>
<string name="app_name">voice</string>
<string name="app_name">音之轨迹</string>
<string name="login">登录</string>
<string name="forgetPwd">忘记密码</string>
<string name="startRegist">开始注册</string>
<string name="regist">注册</string>
<string name="resPwd">重置密码</string>
<string name="confirm">确认</string>
</resources>

@ -1,12 +1,23 @@
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="TextView">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_centerHorizontal">true</item>
<item name="android:layout_centerVertical">true</item>
<item name="android:layout_gravity">center</item>
<item name="android:textColor">@color/white</item>
<item name="android:textSize">16sp</item>
</style>
<style name="textstyle">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">50dp</item>
@ -15,4 +26,8 @@
<item name="android:layout_marginTop">10dp</item>
<item name="android:gravity">center</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
</resources>

@ -0,0 +1,17 @@
package com.example.cici;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() {
assertEquals(4, 2 + 2);
}
}

@ -4,11 +4,10 @@ buildscript {
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
@ -19,8 +18,9 @@ buildscript {
allprojects {
repositories {
google()
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
maven { url "https://raw.github.com/bmob/bmob-android-sdk/master" }
}
}

@ -1,19 +1,13 @@
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx1536m
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

@ -1,5 +1,6 @@
#Wed Aug 01 09:41:32 CST 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip

Loading…
Cancel
Save