Android实现记事本功能(26)

本文实例为大家分享了Android实现记事本功能的具体代码,供大家参考,具体内容如下

MainActivity.java代码:

package siso.smartnotef.activity;

import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.TextView;

import java.util.ArrayList;
import java.util.List;

import siso.smartnotef.R;
import siso.smartnotef.adapter.NotepadeAdapter;
import siso.smartnotef.db.DataHelper;
import siso.smartnotef.global.GlobalParams;
import siso.smartnotef.model.NotepadBean;
import siso.smartnotef.model.NotepadWithDataBean;
import siso.smartnotef.service.MainService;

public class MainActivity extends AppCompatActivity implements View.OnClickListener, NotepadeAdapter.ClickFunction {

 private TextView tv_add;
 private ListView lv_contents;
 private List<NotepadWithDataBean> notepadWithDataBeanList;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  Intent intent1 = new Intent(MainActivity.this, MainService.class);
  startService(intent1);
  findViews();
  setListeners();
  initView();

 }

 private void findViews() {
  tv_add = (TextView) findViewById(R.id.tv_add);
  lv_contents = (ListView) findViewById(R.id.lv_content);
 }

 private void setListeners() {
  tv_add.setOnClickListener(this);
 }

 private void initView() {
  DataHelper helper = new DataHelper(MainActivity.this);
  notepadWithDataBeanList = new ArrayList<NotepadWithDataBean>();
  List<NotepadBean> notepadBeanList = helper.getNotepadList();
  for (int i = 0; i < notepadBeanList.size(); i++) {
   if (0 == notepadWithDataBeanList.size()) {
    NotepadWithDataBean notepadWithDataBean = new NotepadWithDataBean();
    notepadWithDataBean.setData(notepadBeanList.get(0).getDate());
    notepadWithDataBeanList.add(notepadWithDataBean);
   }
   boolean flag = true;
   for (int j = 0; j < notepadWithDataBeanList.size(); j++) {
    int date = notepadWithDataBeanList.get(j).getData();
    if (date == notepadBeanList.get(i).getDate()) {
     notepadWithDataBeanList.get(j).getNotepadBeenList().add(notepadBeanList.get(i));
     flag = false;
     break;
    }
   }
   if (flag) {
    NotepadWithDataBean notepadWithDataBean = new NotepadWithDataBean();
    notepadWithDataBean.setData(notepadBeanList.get(i).getDate());
    notepadWithDataBeanList.add(notepadWithDataBean);
    notepadWithDataBeanList.get(notepadWithDataBeanList.size() - 1).getNotepadBeenList().add(notepadBeanList.get(i));
   }
  }
  NotepadeAdapter adapter = new NotepadeAdapter(MainActivity.this, notepadWithDataBeanList, this);
  lv_contents.setAdapter(adapter);
//  setListViewHeightBasedOnChildren(lv_contents);
 }

 public void setListViewHeightBasedOnChildren(ListView listView) {
  if (listView == null) return;
  ListAdapter listAdapter = listView.getAdapter();
  if (listAdapter == null) {
   // pre-condition
   return;
  }
  int totalHeight = 0;
  for (int i = 0; i < listAdapter.getCount(); i++) {
   View listItem = listAdapter.getView(i, null, listView);
   listItem.measure(0, 0);
   totalHeight += listItem.getMeasuredHeight();
  }
  ViewGroup.LayoutParams params = listView.getLayoutParams();
  params.height = totalHeight + (listView.getDividerHeight() * (listAdapter.getCount() - 1));
  listView.setLayoutParams(params);
 }

 @Override
 public void onClick(View v) {
  switch (v.getId()) {
   case R.id.tv_add:
    Intent intent = new Intent();
    Bundle bundle = new Bundle();
    bundle.putInt(GlobalParams.TYPE_KEY, GlobalParams.TYPE_ADD);
    intent.putExtras(bundle);
    intent.setClass(MainActivity.this, AddContentActivity.class);
    startActivityForResult(intent, GlobalParams.ADD_REQUEST);
    break;
  }
 }

 @Override
 protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  super.onActivityResult(requestCode, resultCode, data);
  switch (requestCode) {
   case GlobalParams.ADD_REQUEST:
    if (GlobalParams.ADD_RESULT_OK == resultCode) {
     initView();
    }
    break;
  }
 }

 @Override
 public void clickItem(int position, int itemPosition) {
  Bundle bundle = new Bundle();
  bundle.putInt(GlobalParams.TYPE_KEY, GlobalParams.TYPE_EDIT);
  bundle.putSerializable(GlobalParams.BEAN_KEY, notepadWithDataBeanList.get(position));
  bundle.putInt(GlobalParams.ITEM_POSITION_KEY, itemPosition);
  Intent intent = new Intent(this, AddContentActivity.class);
  intent.putExtras(bundle);
  startActivityForResult(intent, GlobalParams.ADD_REQUEST);
 }

 @Override
 public void longClickItem(final int position, final int itemPostion) {
  AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
  builder.setMessage("确认删除吗?");
  builder.setTitle("提示");
  builder.setPositiveButton("确认", new DialogInterface.OnClickListener() {
   @Override
   public void onClick(DialogInterface dialog, int which) {
    DataHelper helper = new DataHelper(MainActivity.this);
    helper.deleteNotepad(notepadWithDataBeanList.get(position).getNotepadBeenList().get(itemPostion).getId());
    initView();
   }
  });
  builder.setNegativeButton("取消", new DialogInterface.OnClickListener() {
   @Override
   public void onClick(DialogInterface dialog, int which) {
    dialog.dismiss();
   }
  });
  builder.create().show();
 }
}

AddContentActivity.java代码:

package siso.smartnotef.activity;

import android.app.DatePickerDialog;
import android.app.TimePickerDialog;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.DatePicker;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.TimePicker;
import android.widget.Toast;

import java.util.Calendar;

import siso.smartnotef.R;
import siso.smartnotef.db.DataHelper;
import siso.smartnotef.global.GlobalParams;
import siso.smartnotef.model.NotepadBean;
import siso.smartnotef.model.NotepadWithDataBean;

public class AddContentActivity extends AppCompatActivity implements View.OnClickListener {

 private TextView tv_save;
 private TextView tv_date;
 private TextView tv_time;
 private TextView tv_cancel;
 private EditText et_content;
 private String time = "";
 private String date = "";
 private Bundle bundle;
 private int type;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_add_content);
  bundle=getIntent().getExtras();
  type=bundle.getInt(GlobalParams.TYPE_KEY);
  findViews();
  setListeners();
  initDate();
 }

 private void findViews() {
  et_content=(EditText)findViewById(R.id.et_content);
  tv_save = (TextView) findViewById(R.id.tv_save);
  tv_date = (TextView) findViewById(R.id.tv_date);
  tv_time = (TextView) findViewById(R.id.tv_time);
  tv_cancel=(TextView)findViewById(R.id.tv_cancel);
 }

 private void setListeners() {
  tv_save.setOnClickListener(this);
  tv_date.setOnClickListener(this);
  tv_time.setOnClickListener(this);
  tv_cancel.setOnClickListener(this);
 }

 private void initDate() {
  Calendar c = Calendar.getInstance();
  int year=c.get(Calendar.YEAR);
  int month=c.get(Calendar.MONTH);
  int day=c.get(Calendar.DAY_OF_MONTH);
  date=getDate(year,month,day);
  if(type==GlobalParams.TYPE_EDIT){
   NotepadWithDataBean notepadWithDataBean=(NotepadWithDataBean)(bundle.getSerializable(GlobalParams.BEAN_KEY));
   et_content.setText(notepadWithDataBean.getNotepadBeenList().get(bundle.getInt(GlobalParams.ITEM_POSITION_KEY)).getContent());
   date=notepadWithDataBean.getData()+"";
   tv_date.setText(date);
   time=notepadWithDataBean.getNotepadBeenList().get(bundle.getInt(GlobalParams.ITEM_POSITION_KEY)).getTime();
   tv_time.setText(time);
  }
 }

 private String getDate(int year,int month,int day){
  String date="";
  date+=year;
  if(month<9){
   date=date+"0"+(month+1);
  }else{
   date+=(month+1);
  }
  if(day<10){
   date=date+"0"+day;
  }else {
   date+=day;
  }
  return date;
 }
 @Override
 public void onClick(View v) {
  switch (v.getId()) {
   case R.id.tv_save:
    if(type==GlobalParams.TYPE_EDIT){
     update();
    }else {
     save();
    }
    break;
   case R.id.tv_date:
    selectDateDialog();
    break;
   case R.id.tv_time:
    selectTimeDialog();
    break;
   case R.id.tv_cancel:
    finish();
    break;
  }
 }
 private void selectDateDialog(){
  Calendar c = Calendar.getInstance();
  int year=c.get(Calendar.YEAR);
  final int month=c.get(Calendar.MONTH)+1;
  int day=c.get(Calendar.DAY_OF_MONTH);
  new DatePickerDialog(AddContentActivity.this, new DatePickerDialog.OnDateSetListener() {
   @Override
   public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) {
    date=getDate(year,monthOfYear,dayOfMonth);
    tv_date.setText(date);
   }
  },year,month,day).show();
 }

 private void selectTimeDialog() {
  Calendar c = Calendar.getInstance();
  int mHour = c.get(Calendar.HOUR_OF_DAY);
  int mMinute = c.get(Calendar.MINUTE);
  new TimePickerDialog(AddContentActivity.this,
    new TimePickerDialog.OnTimeSetListener() {

     @Override
     public void onTimeSet(TimePicker view,
           int hourOfDay, int minute) {
      time=formatTime(hourOfDay,minute);
      tv_time.setText(time);
     }
    }, mHour, mMinute, true).show();
 }

 private String formatTime(int hour,int minute){
  String time=hour+":";
  if(minute<10){
   time=time+"0"+minute;
  }else{
   time+=minute;
  }
  return time;
 }
 private void save() {
  String content = et_content.getText().toString();
  if ("".equals(content)) {
   Toast.makeText(AddContentActivity.this, "请输入内容", Toast.LENGTH_SHORT).show();
   return;
  }
  if ("".equals(time)) {
   Toast.makeText(AddContentActivity.this, "请选择时间", Toast.LENGTH_SHORT).show();
   return;
  }
  NotepadBean notepadBean = new NotepadBean();
  notepadBean.setContent(content);
  notepadBean.setDate(Integer.parseInt(date));
  notepadBean.setTime(time);
  DataHelper helper = new DataHelper(AddContentActivity.this);
  helper.insertData(notepadBean);
  setResult(GlobalParams.ADD_RESULT_OK);
  finish();
 }
 private void update(){
  DataHelper helper=new DataHelper(AddContentActivity.this);
  NotepadWithDataBean bean=(NotepadWithDataBean)(bundle.getSerializable(GlobalParams.BEAN_KEY));
  int itemPosition=bundle.getInt(GlobalParams.ITEM_POSITION_KEY);
  helper.update(bean.getNotepadBeenList().get(itemPosition).getId(),date,time,et_content.getText().toString());
  setResult(GlobalParams.ADD_RESULT_OK);
  finish();
 }
}

RemindActivity.java代码:

package siso.smartnotef.activity;

import android.media.MediaPlayer;
import android.media.RingtoneManager;
import android.net.Uri;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

import java.io.IOException;

import siso.smartnotef.R;
import siso.smartnotef.global.GlobalParams;

public class RemindActivity extends AppCompatActivity {

 private TextView tv_content;
 private Button bt_confirm;
 private MediaPlayer mMediaPlayer;;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_remind);
  findViews();
  setListeners();
  Bundle bundle=getIntent().getExtras();
  String content=bundle.getString(GlobalParams.CONTENT_KEY);
  tv_content.setText(content);
  playSound();
 }

 private void findViews(){
  tv_content=(TextView)findViewById(R.id.tv_content);
  bt_confirm=(Button) findViewById(R.id.bt_confirm);
 }
 private void setListeners(){
  bt_confirm.setOnClickListener(new View.OnClickListener() {
   @Override
   public void onClick(View v) {
    if(null!=mMediaPlayer){
     mMediaPlayer.stop();
     finish();
    }
   }
  });
 }

 public void playSound() {
  new Thread(new Runnable() {
   @Override
   public void run() {
    mMediaPlayer = MediaPlayer.create(RemindActivity.this, getSystemDefultRingtoneUri());
    mMediaPlayer.setLooping(true);//设置循环
    try {
     mMediaPlayer.prepare();
    } catch (IllegalStateException e) {
     e.printStackTrace();
    } catch (IOException e) {
     e.printStackTrace();
    }
    mMediaPlayer.start();
   }
  }).start();

 }
 //获取系统默认铃声的Uri
 private Uri getSystemDefultRingtoneUri() {
  return RingtoneManager.getActualDefaultRingtoneUri(RemindActivity.this,
    RingtoneManager.TYPE_RINGTONE);
 }

}

activity_main.xml内容:

<?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:id="@+id/activity_main"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical"
 tools:context="siso.smartnotef.activity.MainActivity">

 <RelativeLayout
  android:layout_width="match_parent"
  android:layout_height="50dp"
  android:background="@color/title_color"
  android:paddingLeft="10dp"
  android:paddingRight="10dp">
  <TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:textColor="@color/white"
   android:textSize="18sp"
   android:layout_centerInParent="true"
   android:text="智能记事本"/>
  <TextView
   android:id="@+id/tv_add"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:textColor="@color/white"
   android:text="新增"
   android:layout_centerVertical="true"
   android:layout_alignParentRight="true"
   android:textSize="13sp"/>
 </RelativeLayout>
 <ListView
  android:id="@+id/lv_content"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"></ListView>
</LinearLayout>

activity_add_content.xml内容:

<?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:id="@+id/activity_add_content"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical"
 tools:context="siso.smartnotef.activity.AddContentActivity">
 <RelativeLayout
  android:layout_width="match_parent"
  android:layout_height="50dp"
  android:background="@color/title_color"
  android:paddingLeft="10dp"
  android:paddingRight="10dp">
  <TextView
   android:id="@+id/tv_cancel"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_centerVertical="true"
   android:text="取消"
   android:textColor="@color/white"/>
  <TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:textColor="@color/white"
   android:textSize="18sp"
   android:layout_centerInParent="true"
   android:text="智能记事本"/>
  <TextView
   android:id="@+id/tv_save"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:textColor="@color/white"
   android:text="保存"
   android:layout_centerVertical="true"
   android:layout_alignParentRight="true"
   />
 </RelativeLayout>
 <LinearLayout
  android:layout_marginTop="10dp"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:orientation="horizontal"
  android:layout_gravity="center_horizontal">
  <TextView
   android:id="@+id/tv_date"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:padding="5dp"
   android:text="今天"/>
  <TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text=" -- "/>
  <TextView
   android:id="@+id/tv_time"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:padding="5dp"
   android:text="请选择时间"
   />
 </LinearLayout>
 <EditText
  android:id="@+id/et_content"
  android:layout_marginTop="10dp"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:inputType="textMultiLine"
  android:gravity="left|top"
  android:layout_margin="20dp"
  android:padding="10dp"
  android:hint="请输入内容"
  android:background="@drawable/edit_back"/>
</LinearLayout>

activity_remind.xml内容:

<?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:layout_height="match_parent"
 android:background="@color/white"
 android:orientation="vertical"
 tools:context="siso.smartnotef.activity.RemindActivity">

 <TextView
  android:id="@+id/tv_content"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_gravity="center_horizontal" />

 <Button
  android:id="@+id/bt_confirm"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_gravity="center_horizontal"
  android:text="取消" />
</LinearLayout>

AndroidManifest.xml内容:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 package="siso.smartnotef">
 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />

 <application
  android:allowBackup="true"
  android:icon="@mipmap/ic_launcher"
  android:label="@string/app_name"
  android:supportsRtl="true"
  android:theme="@style/Theme.AppCompat.Light.NoActionBar">

  <activity
   android:name=".activity.MainActivity"
   android:theme="@style/Theme.AppCompat.Light.NoActionBar">
   <intent-filter>
    <action android:name="android.intent.action.MAIN" />

    <category android:name="android.intent.category.LAUNCHER" />
   </intent-filter>
  </activity>

  <receiver android:name=".receiver.MainReceiver">
   <intent-filter>
    <action android:name="android.intent.action.BOOT_COMPLETED" />
   </intent-filter>
  </receiver>

  <activity android:name=".activity.AddContentActivity" />

  <service
   android:name=".service.MainService"
   android:enabled="true"
   android:exported="true" />

  <activity android:name=".activity.RemindActivity"
   ></activity>

 </application>

</manifest>

项目结构如图:

项目运行结果如图:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • Android利用Intent实现记事本功能(NotePad)

    本文实例为大家分享了Intent如何实现一个简单的记事本功能的演示过程,供大家参考,具体内容如下 1.运行截图 单击右上角[-]会弹出[添加]菜单项,长按某条记录会弹出快捷菜单[删除]项. 2.主要设计步骤 (1)添加引用 鼠标右击[引用]à[添加引用],在弹出的窗口中勾选"System.Data"和"System.Data.SQlite",如下图所示: 注意:不需要通过NuGet添加SQLite程序包,只需要按这种方式添加即可. (2)添加图片 到Android

  • Android中实现记事本动态添加行效果

    本文主要给大家介绍了关于Android实现记事本动态添加行的相关内容,分享出来供大家参考学习,下面来一起看看详细的介绍: 先看效果图: 这是昨天在群里面有人在问这个问题,在这里顺便记录一下,这个效果我们可以自定义EditText,实现起来也不难 看详细步骤: 第一:初始化Paint,这里肯定要用到画笔的 this.paint = new Paint(); paint.setStyle(Paint.Style.STROKE); paint.setColor(getResources().getCo

  • Android实现记事本功能(26)

    本文实例为大家分享了Android实现记事本功能的具体代码,供大家参考,具体内容如下 MainActivity.java代码: package siso.smartnotef.activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.content.Intent; import android.os.Bundle; import android.support.

  • Android实现记事本功能

    本文实例为大家分享了Android实现记事本功能的具体代码,供大家参考,具体内容如下 实现功能 1.文本数据的存储 2.图片数据存储 3.视频数据存储 4.自定义的Adapter 5.SQlite的创建 6.数据listview列表的显示 demo地址 记事本 界面布局 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.

  • Android实现记事本小功能

    本文实例为大家分享了Android实现记事本功能的具体代码,供大家参考,具体内容如下 首先声明,本人是android的小白,主要是新人项目写了这个程序,思路可能不是很清晰,可优化的地方也有很多,望路过的大佬不吝赐教. 该记事本包含创建新条目,数据库增删改查,条目可编辑,滑动删除与拖拽排序,简单闹钟实现(还有个简陋背景音乐开关就不提了太简单),接下来逐一介绍一下. build.gradle导入 apply plugin: 'kotlin-kapt' ''' implementation 'com.

  • listview与SQLite结合实现记事本功能

    android记事本的demo在网上一搜一大堆,但是大神写的demo往往功能太多导致新手难以着手,很难啃得动:而一些新手写的demo又往往是东拼西凑,代码很多都是copy的别人的,直接放在项目里面用,也不知道代码有什么作用.往往代码特别丑,重复性的代码也比较多. 笔者近期学到此处,自己理解之后也还是打算写个demo供新手学习一下.代码说不上优雅,但在笔者看来已经尽力去让人容易理解了.(源码在文章结尾) 为了便于新手学习,在此也是罗列一下涉及的知识点: 1.SQLite的基本使用,增删查改 2.l

  • Android+SQLite数据库实现的生词记事本功能实例

    本文实例讲述了Android+SQLite数据库实现的生词记事本功能.分享给大家供大家参考,具体如下: 主activity命名为 Dict: 代码如下: package example.com.myapplication; import android.app.Activity; import android.content.Intent; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase;

  • Android手机开发设计之记事本功能

    本文实例为大家分享了Android手机开发设计之记事本功能,供大家参考,具体内容如下 一.需求分析 1.1业务需求分析 近年来,随着生活节奏的加快,工作和生活的双重压力全面侵袭着人们,如何避免忘记工作和生活中的诸多事情而造成不良的后果就显得非常重要.为此我们开发一款基于Android系统的简单记事本,其能够便携记录生活和工作对诸多事情,从而帮助人们有效地进行时间管理. 1.2功能需求分析 本记事本项目希望可以开发出一款符合用户生活工作习惯的简单应用,能够满足用户的各方面需求,可以对记事进行增加.

  • Java实现记事本功能

    今天给大家介绍一下关于如何用Java实现记事本功能,是学习Java swing的一个非常好的案例,下面先看一下运行结果: 下面我们来看源码: import java.awt.*; import java.awt.event.*; import java.text.*; import java.util.*; import java.io.*; import javax.swing.undo.*; import javax.swing.border.*; import javax.swing.*;

  • Android毕业设计记事本APP

    目录 前言 功能概述 系统设计 启动界面 引导界面 更改口令界面 主界面和编辑界面 1 建表 2 添加便签 3 在主界面显示便签 4 再次编辑该便签 5 主界面和编辑界面布局 前言 该设计是一款轻量级的便签工具,使用Android Studio开发,风格简练,可实现便签的添加.删除.修改.查看功能.为保证一定的安全性,设置了进入口令,类似于应用锁,用户可以修改口令.主要使用的技术有共享参数.数据库.SwipeRefreshLayout控件. 功能概述 用户打开应用后,启动页会判断用户是否第一次打

  • Android实现上传图片功能

    本文实例为大家分享了Android实现上传图片功能的具体代码,供大家参考,具体内容如下 设定拍照返回的图片路径 /**      * 设定拍照返回的图片路径      * @param image 图片路径      * @param i 约定值      */     protected void image(String image, int i) {         //创建file对象,用于存储拍照后的图片,这也是拍照成功后的照片路径         outputImage = new

随机推荐