标签:android style blog http color io os 使用 ar
今天就来实现下查看图片及录音的功能,在编辑或者浏览记事时,点击图片,打开一个自定义Activity(当然了,也可以调用系统的图库来查看)来查看所添加的图片的原始图片,而不是缩放后的图片,同理,用自定义Activity来查看录音文件,实现播放录音的功能。上图:
从图中也可以看出,我们首先要创建两个Activity,当然了,布局文件也是少不了的,如下:
activity_show_picture.xml
- <?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"
- >
-
- <ImageView
- android:id="@+id/iv_showPic"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:scaleType="fitCenter"
- />
-
- </LinearLayout>
ShowPicture.java
- public class ShowPicture extends Activity {
- private ImageView img;
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
- setContentView(R.layout.activity_show_picture);
- getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.title_add);
-
- TextView tv_title = (TextView)findViewById(R.id.tv_title);
- tv_title.setText("查看图片");
- Button bt_back = (Button)findViewById(R.id.bt_back);
- bt_back.setOnClickListener(new OnClickListener() {
-
- @Override
- public void onClick(View arg0) {
- ShowPicture.this.finish();
- }
- });
- Button bt_del = (Button)findViewById(R.id.bt_save);
- bt_del.setBackgroundResource(R.drawable.paint_icon_delete);
-
- img = (ImageView)findViewById(R.id.iv_showPic);
-
- Intent intent = this.getIntent();
- String imgPath = intent.getStringExtra("imgPath");
- Bitmap bm = BitmapFactory.decodeFile(imgPath);
- img.setImageBitmap(bm);
- }
- }
主要思想就是用ImageView来显示指定路径的图片,该路径是从前一个Activity中传入进来的。这里的监听事件,只实现了返回的功能,至于,放大缩小图片,旋转图片,下节再实现吧。activity_show_record.xml
- <?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"
- android:background="@drawable/bg"
- >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:gravity="center"
- android:layout_centerInParent="true"
- >
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:gravity="center"
- android:layout_margin="5dp"
- >
- <ImageView
- android:id="@+id/iv_record_wave_left"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
-
- android:layout_margin="5dp"
- android:background="@anim/record_wave_left"
- />
- <ImageView
- android:id="@+id/iv_microphone"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:src="@drawable/record_microphone_icon"
- android:layout_margin="5dp"
- />
- <ImageView
- android:id="@+id/iv_record_wave_right"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
-
- android:layout_margin="5dp"
- android:background="@anim/record_wave_right"
- />
-
- </LinearLayout>
- <TextView
- android:id="@+id/tv_recordTime"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:textColor="#499df7"
- android:textSize="20sp"
- android:text="00:00:00"
- android:gravity="center"
- android:layout_margin="5dp"
- />
- </LinearLayout>
-
- </RelativeLayout>
ShowRecord.java
在查看录音时,用到了对播放时间的显示处理,以及动画的播放与停止,稍有点复杂,这些在之前“添加录音”一节就就讲述了。
有了这两个Activity后,那么剩下的工作就是在单击图片或者录音的事件中启动这两个Activity即可。但这就有一个问题,如何在图文混排的
EditText中的判断单击的是图片,录音,还是文字呢??这就需要从EditText中的识别那些是图片,那些是文字,再进一步对图片分析到底单击的
是那一个图片,从而实现查看具体图片及录音的功能,具体如下:
1. 记录EditText中每个图片的位置及所在源路径
为了实现在编辑和浏览时可以随时查看原图片及录音文件,所以在每次添加图片或录音后,用一个List记住新增加的每个图片或录音的位置及所在路径,当然
了,如果是浏览已经存在于数据库中的记事时,在加载数据的同时,同样用ListView来记住所有的图片及录音的位置和路径。主要代码如下:
-
- private List<Map<String,String>> imgList = new ArrayList<Map<String,String>>();
每次单击记事列表项,进入查看记事,在加载数据的同时将所有图片及录音的位置及路径记录下来,具体为在loadDate()方法中添加以下代码:
-
- Map<String,String> map = new HashMap<String,String>();
- map.put("location", m.start()+"-"+m.end());
- map.put("path", path);
- imgList.add(map);
同理,也要在每次添加图片录音后也要加入相应的代码,在InsertBitmap()函数中添加如下代码:
-
- Map<String,String> map = new HashMap<String,String>();
- map.put("location", selectionIndex+"-"+(selectionIndex+spannableString.length()));
- map.put("path", imgPath);
- imgList.add(map);
2. 给EditText添加单击事件
- private LineEditText et_Notes;
-
- ... ...
-
- et_Notes.setOnClickListener(new TextClickEvent());
3. 判断单击的是图片还是普通文字
为了判断单击的是图片还是普通文字,用到了Spanned,ImageSpan,主要思想,就是判断当前单击的位置是否在图片的位置范围内,主要代码如下:
- Spanned s = et_Notes.getText();
- ImageSpan[] imageSpans;
- imageSpans = s.getSpans(0, s.length(), ImageSpan.class);
-
- int selectionStart = et_Notes.getSelectionStart();
- for(ImageSpan span : imageSpans){
-
- int start = s.getSpanStart(span);
- int end = s.getSpanEnd(span);
- //找到图片
- if(selectionStart >= start && selectionStart < end){
- ... ...
- }
-
- }
打到了图片,接下来就要判断单击的到底是那一图片呢?
4. 决断单击的具体是那一张图片
这就用到了第一步记录的图片的位置和路径了,显然,就是用位置来判断到底是单击的那一个图片,主要代码如下:
-
-
- String path = null;
- for(int i = 0;i < imgList.size();i++){
- Map map = imgList.get(i);
-
- if(map.get("location").equals(start+"-"+end)){
- path = imgList.get(i).get("path");
- break;
- }
- }
5. 判断是录音还是图片,启动对应的Activity,并传递路径
查看图片,有两种方法,一种是调用系统的图库打开图片,另一种就是自定义,这里,我都实现了,打开录音用的是自定义的Activity,如下:
-
-
- if(path.substring(path.length()-3, path.length()).equals("amr")){
- Intent intent = new Intent(AddActivity.this,ShowRecord.class);
- intent.putExtra("audioPath", path);
- startActivity(intent);
- }
-
- else{
-
-
-
-
- Intent intent = new Intent(AddActivity.this,ShowPicture.class);
- intent.putExtra("imgPath", path);
- startActivity(intent);
- }
以上,3,4,5步其实都是在单击的监听器中实现的,完整代码如下:
-
- class TextClickEvent implements OnClickListener{
-
- @Override
- public void onClick(View v) {
- Spanned s = et_Notes.getText();
- ImageSpan[] imageSpans;
- imageSpans = s.getSpans(0, s.length(), ImageSpan.class);
-
- int selectionStart = et_Notes.getSelectionStart();
- for(ImageSpan span : imageSpans){
-
- int start = s.getSpanStart(span);
- int end = s.getSpanEnd(span);
-
- if(selectionStart >= start && selectionStart < end){
-
-
-
- String path = null;
- for(int i = 0;i < imgList.size();i++){
- Map map = imgList.get(i);
-
- if(map.get("location").equals(start+"-"+end)){
- path = imgList.get(i).get("path");
- break;
- }
- }
-
-
- if(path.substring(path.length()-3, path.length()).equals("amr")){
- Intent intent = new Intent(AddActivity.this,ShowRecord.class);
- intent.putExtra("audioPath", path);
- startActivity(intent);
- }
-
- else{
-
-
-
-
- Intent intent = new Intent(AddActivity.this,ShowPicture.class);
- intent.putExtra("imgPath", path);
- startActivity(intent);
- }
- }
- else
-
- imm.showSoftInput(et_Notes, 0);
- }
- }
- }
至此,就实现了查看图片以及播放录音的功能。
android项目 之 记事本(13) ----- 查看图片及播放录音
标签:android style blog http color io os 使用 ar
原文地址:http://www.cnblogs.com/yido9932/p/4024813.html