@ -1,51 +0,0 @@
|
||||
package com.example.cici;
|
||||
|
||||
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.example.cici.voice.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.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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -1,79 +0,0 @@
|
||||
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.example.cici.bean.Comment;
|
||||
import com.example.cici.voice.R;
|
||||
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;
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
@ -1,101 +0,0 @@
|
||||
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.example.cici.bean.Post;
|
||||
import com.example.cici.voice.R;
|
||||
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;
|
||||
}
|
||||
}
|
@ -1,65 +0,0 @@
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
@ -1,71 +0,0 @@
|
||||
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;
|
||||
}
|
||||
}
|
@ -1,93 +0,0 @@
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
@ -1,57 +0,0 @@
|
||||
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;
|
||||
}
|
||||
}
|
@ -1,47 +0,0 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,38 +0,0 @@
|
||||
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() {
|
||||
}
|
||||
}
|
@ -1,35 +0,0 @@
|
||||
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);
|
||||
}
|
||||
}
|
@ -1,29 +0,0 @@
|
||||
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("重新获取验证码");
|
||||
}
|
||||
}
|
@ -1,387 +0,0 @@
|
||||
package com.example.cici.voice;
|
||||
|
||||
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.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.example.cici.voice.R;
|
||||
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);
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,273 +0,0 @@
|
||||
package com.example.cici.voice;
|
||||
|
||||
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.example.cici.voice.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();
|
||||
}
|
||||
}
|
@ -1,125 +0,0 @@
|
||||
package com.example.cici.voice;
|
||||
|
||||
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.example.cici.voice.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
|
||||
*/
|
||||
/* 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;
|
||||
}
|
||||
}
|
@ -1,103 +0,0 @@
|
||||
package com.example.cici.voice;
|
||||
|
||||
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 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();
|
||||
}
|
||||
}
|
@ -1,230 +0,0 @@
|
||||
<?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>
|
@ -1,70 +0,0 @@
|
||||
<?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/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,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:id="@+id/content_main"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
tools:context="com.example.cici.ui.MainActivity">
|
||||
|
||||
<include layout="@layout/content_main" />
|
||||
|
||||
|
||||
</LinearLayout>
|
@ -1,69 +0,0 @@
|
||||
<?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>
|
||||
|
@ -1,150 +0,0 @@
|
||||
<?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>
|
@ -1,42 +0,0 @@
|
||||
<?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>
|
@ -1,14 +0,0 @@
|
||||
<?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>
|
@ -1,9 +0,0 @@
|
||||
<?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>
|
@ -1,41 +0,0 @@
|
||||
<?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>
|
@ -1,158 +0,0 @@
|
||||
<?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>
|
@ -1,64 +0,0 @@
|
||||
<?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>
|
@ -1,90 +0,0 @@
|
||||
<?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">
|
||||
|
||||
<TextView
|
||||
style="@style/textstyle"
|
||||
android:gravity="center"
|
||||
android:text="@string/login"
|
||||
android:textColor="#ffff"
|
||||
android:textSize="24sp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintHorizontal_bias="0.0"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
tools:layout_editor_absoluteY="95dp"
|
||||
tools:ignore="MissingConstraints" />
|
||||
<!-- input account -->
|
||||
<EditText
|
||||
android:id="@+id/editPhone"
|
||||
style="@style/textstyle"
|
||||
android:layout_width="fill_parent"
|
||||
android:hint="手机号"
|
||||
android:inputType="number"
|
||||
android:lines="1"
|
||||
android:maxLength="11"
|
||||
android:singleLine="true"
|
||||
tools:layout_editor_absoluteX="5dp"
|
||||
tools:layout_editor_absoluteY="60dp"
|
||||
tools:ignore="MissingConstraints" />
|
||||
<!-- input pwd -->
|
||||
<EditText
|
||||
android:id="@+id/editPwd"
|
||||
style="@style/textstyle"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_marginTop="36dp"
|
||||
android:layout_marginBottom="8dp"
|
||||
android:hint="密码"
|
||||
android:lines="1"
|
||||
android:maxLength="16"
|
||||
android:password="true"
|
||||
android:singleLine="true"
|
||||
app:layout_constraintBottom_toTopOf="@+id/btnLogin"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintHorizontal_bias="0.545"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/editPhone" />
|
||||
<!-- the login button -->
|
||||
<Button
|
||||
android:id="@+id/btnLogin"
|
||||
style="@style/textstyle"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_marginBottom="124dp"
|
||||
android:onClick="OnMyLoginClick"
|
||||
android:text="@string/login"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent" />
|
||||
|
||||
<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,205 +0,0 @@
|
||||
<?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>
|
@ -1,178 +0,0 @@
|
||||
<?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">
|
||||
|
||||
<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"
|
||||
android:layout_width="173dp"
|
||||
android:layout_height="33dp"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginStart="8dp"
|
||||
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.502"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/editPwd" />
|
||||
|
||||
<EditText
|
||||
android:id="@+id/editPhone"
|
||||
style="@style/textstyle"
|
||||
android:layout_width="fill_parent"
|
||||
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.0"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/tableRow"
|
||||
tools:ignore="MissingConstraints" />
|
||||
<!-- input password -->
|
||||
<EditText
|
||||
android:id="@+id/editPwd"
|
||||
style="@style/textstyle"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:hint="密码"
|
||||
android:lines="1"
|
||||
android:maxLength="16"
|
||||
android:password="true"
|
||||
android:singleLine="true"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/editName"
|
||||
tools:ignore="MissingConstraints" />
|
||||
<!-- the regist button -->
|
||||
<Button
|
||||
android:id="@+id/btnRegist"
|
||||
style="@style/textstyle"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="50dp"
|
||||
android:layout_marginEnd="4dp"
|
||||
android:layout_marginBottom="80dp"
|
||||
android:onClick="OnMyRegistClick"
|
||||
android:text="@string/regist"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
tools:ignore="MissingConstraints" />
|
||||
|
||||
<EditText
|
||||
android:id="@+id/editCode"
|
||||
android:layout_width="210dp"
|
||||
android:layout_height="45dp"
|
||||
android:layout_below="@+id/editPhone"
|
||||
android:layout_alignStart="@+id/btnRegist"
|
||||
android:layout_marginStart="4dp"
|
||||
android:layout_marginTop="28dp"
|
||||
android:layout_marginBottom="8dp"
|
||||
android:ems="10"
|
||||
android:hint="请输入验证码"
|
||||
android:inputType="textPersonName"
|
||||
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
|
||||
android:id="@+id/btnGetcord"
|
||||
android:layout_width="100dp"
|
||||
android:layout_height="44dp"
|
||||
android:layout_alignBaseline="@+id/editCode"
|
||||
android:layout_alignEnd="@+id/editPhone"
|
||||
android:layout_alignBottom="@+id/editCode"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:background="@color/colorPrimary"
|
||||
android:text="获取验证码"
|
||||
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
|
||||
android:id="@+id/editName"
|
||||
android:layout_width="fill_parent"
|
||||
|
||||
android:layout_height="48dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:ems="10"
|
||||
android:gravity="center"
|
||||
android:hint="用户名"
|
||||
android:inputType="textPersonName"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintHorizontal_bias="0.0"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/reg_head"
|
||||
tools:ignore="MissingConstraints" />
|
||||
|
||||
<TableRow
|
||||
android:id="@+id/tableRow"
|
||||
android:layout_width="282dp"
|
||||
android:layout_height="28dp"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_marginEnd="8dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintHorizontal_bias="0.372"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/tvShowDialog">
|
||||
|
||||
<TextView
|
||||
android:layout_width="91dp"
|
||||
android:layout_height="20dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:text="性别:" />
|
||||
|
||||
<RadioGroup
|
||||
android:id="@+id/rg"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<RadioButton
|
||||
android:id="@+id/male"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:checked="true"
|
||||
android:text="男" />
|
||||
|
||||
<RadioButton
|
||||
android:id="@+id/famle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:checked="true"
|
||||
android:text="女" />
|
||||
</RadioGroup>
|
||||
</TableRow>
|
||||
|
||||
|
||||
|
||||
|
||||
</android.support.constraint.ConstraintLayout>
|
@ -1,76 +0,0 @@
|
||||
<?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">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/textView"
|
||||
style="@style/textstyle"
|
||||
android:layout_marginStart="8dp"
|
||||
android:layout_marginEnd="8dp"
|
||||
android:gravity="center"
|
||||
android:text="@string/resPwd"
|
||||
android:textColor="#ffff"
|
||||
android:textSize="24sp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
tools:layout_editor_absoluteY="52dp"
|
||||
tools:ignore="MissingConstraints" />
|
||||
<!-- input phone -->
|
||||
<EditText
|
||||
android:id="@+id/editName"
|
||||
style="@style/textstyle"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_marginTop="8dp"
|
||||
android:hint="请输入用户名"
|
||||
android:inputType="number"
|
||||
android:lines="1"
|
||||
android:maxLength="11"
|
||||
android:singleLine="true"
|
||||
app:layout_constraintTop_toBottomOf="@+id/textView"
|
||||
tools:ignore="MissingConstraints"
|
||||
tools:layout_editor_absoluteX="0dp" />
|
||||
<!-- input password -->
|
||||
<EditText
|
||||
android:id="@+id/editPwd"
|
||||
style="@style/textstyle"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_marginTop="8dp"
|
||||
android:hint="请输入新密码"
|
||||
android:lines="1"
|
||||
android:maxLength="16"
|
||||
android:password="true"
|
||||
android:singleLine="true"
|
||||
app:layout_constraintTop_toBottomOf="@+id/editPhone"
|
||||
tools:ignore="MissingConstraints"
|
||||
tools:layout_editor_absoluteX="0dp" />
|
||||
<!-- input password again -->
|
||||
<EditText
|
||||
android:id="@+id/editResPwd"
|
||||
style="@style/textstyle"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_marginTop="8dp"
|
||||
android:hint="请再次输入新密码"
|
||||
android:lines="1"
|
||||
android:maxLength="16"
|
||||
android:password="true"
|
||||
android:singleLine="true"
|
||||
app:layout_constraintTop_toBottomOf="@+id/editPwd"
|
||||
tools:ignore="MissingConstraints"
|
||||
tools:layout_editor_absoluteX="0dp" />
|
||||
<!-- the confirm button -->
|
||||
<Button
|
||||
android:id="@+id/btnConfirm"
|
||||
style="@style/textstyle"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_marginTop="68dp"
|
||||
android:onClick="OnMyConfirmClick"
|
||||
android:text="@string/confirm"
|
||||
app:layout_constraintTop_toBottomOf="@+id/editResPwd"
|
||||
tools:ignore="MissingConstraints"
|
||||
tools:layout_editor_absoluteX="0dp" />
|
||||
|
||||
</android.support.constraint.ConstraintLayout>
|
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 688 B |
Before Width: | Height: | Size: 424 B |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 98 KiB |
Before Width: | Height: | Size: 424 KiB |
Before Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 8.1 KiB |
Before Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 278 B |
Before Width: | Height: | Size: 525 B |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 353 B |
Before Width: | Height: | Size: 185 B |
Before Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 565 B |
@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<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>
|
@ -1,3 +0,0 @@
|
||||
<resources>
|
||||
<dimen name="fab_margin">16dp</dimen>
|
||||
</resources>
|
@ -1,9 +0,0 @@
|
||||
<resources>
|
||||
<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,33 +0,0 @@
|
||||
<resources>
|
||||
|
||||
<!-- Base application theme. -->
|
||||
<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>
|
||||
<item name="android:layout_marginLeft">5dp</item>
|
||||
<item name="android:layout_marginRight">5dp</item>
|
||||
<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,29 @@
|
||||
apply plugin: 'com.android.application'
|
||||
|
||||
android {
|
||||
compileSdkVersion 27
|
||||
defaultConfig {
|
||||
applicationId "com.example.mediarecorde"
|
||||
minSdkVersion 15
|
||||
targetSdkVersion 27
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||
implementation 'com.android.support:appcompat-v7:27.1.1'
|
||||
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
||||
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.android.support:support-v4:27.1.1'
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.example.mediarecorde">
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
||||
|
||||
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
|
||||
|
||||
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/AppTheme">
|
||||
<activity android:name=".MainActivity">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</application>
|
||||
|
||||
</manifest>
|
@ -0,0 +1,46 @@
|
||||
package com.example.mediarecorde;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
import android.content.Context;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.BaseAdapter;
|
||||
import android.widget.TextView;
|
||||
|
||||
public class MAdapter extends BaseAdapter {
|
||||
private LayoutInflater inflater;
|
||||
private Context mContext;
|
||||
private ArrayList<String> list;
|
||||
private TextView tv;
|
||||
|
||||
public MAdapter(Context c, ArrayList<String> i) {
|
||||
this.mContext = c;
|
||||
this.list = i;
|
||||
inflater = LayoutInflater.from(c);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getCount() {
|
||||
return list.size();
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object getItem(int position) {
|
||||
return list.get(position);
|
||||
}
|
||||
|
||||
@Override
|
||||
public long getItemId(int position) {
|
||||
return position;
|
||||
}
|
||||
|
||||
@Override
|
||||
public View getView(int position, View convertView, ViewGroup parent) {
|
||||
convertView = inflater.inflate(R.layout.item, null);
|
||||
tv = (TextView) convertView.findViewById(R.id.tv);
|
||||
tv.setText(list.get(position));
|
||||
return convertView;
|
||||
}
|
||||
}
|
@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:orientation="vertical" >
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal" >
|
||||
|
||||
<Button
|
||||
android:id="@+id/startRecord"
|
||||
android:layout_weight="1"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="开始录音" />
|
||||
|
||||
<Button
|
||||
android:layout_weight="1"
|
||||
android:id="@+id/stopRecord"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="完成录音" />
|
||||
|
||||
<Button
|
||||
android:layout_weight="1"
|
||||
android:id="@+id/startPlay"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="开始播放" />
|
||||
|
||||
<Button
|
||||
android:layout_weight="1"
|
||||
android:id="@+id/stopPlay"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="停止播放" />
|
||||
<Button
|
||||
android:layout_weight="1"
|
||||
android:id="@+id/pausePlay"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="暂停播放" />
|
||||
<Button
|
||||
android:layout_weight="1"
|
||||
android:id="@+id/delete"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="删除" />
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/time"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="10dp"
|
||||
android:layout_marginRight="10dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:text="您本次的录音时长为: 00:00:00"
|
||||
android:textColor="#0000ff"
|
||||
android:textSize="20sp" />
|
||||
|
||||
<ListView
|
||||
android:id="@+id/listview"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginTop="20dp" >
|
||||
</ListView>
|
||||
|
||||
</LinearLayout>
|
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical" >
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingBottom="10dp"
|
||||
android:paddingLeft="10dp"
|
||||
android:paddingRight="10dp"
|
||||
android:textSize="20sp" />
|
||||
|
||||
</LinearLayout>
|
@ -0,0 +1,12 @@
|
||||
<menu 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"
|
||||
tools:context="com.example.mediarecorde.MainActivity" >
|
||||
|
||||
<item
|
||||
android:id="@+id/action_settings"
|
||||
android:orderInCategory="100"
|
||||
android:title="@string/action_settings"
|
||||
app:showAsAction="never"/>
|
||||
|
||||
</menu>
|
After Width: | Height: | Size: 2.9 KiB |
After Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.4 KiB |
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 8.9 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
@ -0,0 +1,11 @@
|
||||
<resources>
|
||||
|
||||
<!--
|
||||
Base application theme for API 11+. This theme completely replaces
|
||||
AppBaseTheme from res/values/styles.xml on API 11+ devices.
|
||||
-->
|
||||
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
|
||||
<!-- API 11 theme customizations can go here. -->
|
||||
</style>
|
||||
|
||||
</resources>
|
@ -0,0 +1,12 @@
|
||||
<resources>
|
||||
|
||||
<!--
|
||||
Base application theme for API 14+. This theme completely replaces
|
||||
AppBaseTheme from BOTH res/values/styles.xml and
|
||||
res/values-v11/styles.xml on API 14+ devices.
|
||||
-->
|
||||
<style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar">
|
||||
<!-- API 14 theme customizations can go here. -->
|
||||
</style>
|
||||
|
||||
</resources>
|
@ -0,0 +1,10 @@
|
||||
<resources>
|
||||
|
||||
<!--
|
||||
Example customization of dimensions originally defined in res/values/dimens.xml
|
||||
(such as screen margins) for screens with more than 820dp of available width. This
|
||||
would include 7" and 10" devices in landscape (~960dp and ~1280dp respectively).
|
||||
-->
|
||||
<dimen name="activity_horizontal_margin">64dp</dimen>
|
||||
|
||||
</resources>
|
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="yes">#7DCBE7</color>
|
||||
<color name="no">#ebebeb</color>
|
||||
</resources>
|
@ -0,0 +1,7 @@
|
||||
<resources>
|
||||
|
||||
<!-- Default screen margins, per the Android Design guidelines. -->
|
||||
<dimen name="activity_horizontal_margin">16dp</dimen>
|
||||
<dimen name="activity_vertical_margin">16dp</dimen>
|
||||
|
||||
</resources>
|
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<string name="app_name">MediaRecorde</string>
|
||||
<string name="hello_world">Hello world!</string>
|
||||
<string name="action_settings">Settings</string>
|
||||
|
||||
</resources>
|
@ -0,0 +1,20 @@
|
||||
<resources>
|
||||
|
||||
<!--
|
||||
Base application theme, dependent on API level. This theme is replaced
|
||||
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
|
||||
-->
|
||||
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
|
||||
<!--
|
||||
Theme customizations available in newer API levels can go in
|
||||
res/values-vXX/styles.xml, while customizations related to
|
||||
backward-compatibility can go here.
|
||||
-->
|
||||
</style>
|
||||
|
||||
<!-- Application theme. -->
|
||||
<style name="AppTheme" parent="AppBaseTheme">
|
||||
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
|
||||
</style>
|
||||
|
||||
</resources>
|