Android编程获取图片和视频缩略图的方法

2019-12-10 18:19:43丽君

布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://www.easck.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
    <TextView
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:text="图片缩略图" />
    <ImageView
      android:id="@+id/image_thumbnail"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content" />
    <TextView
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:text="视频缩略图" />
    <ImageView
      android:id="@+id/video_thumbnail"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content" />
</LinearLayout>
 

注:相关教程知识阅读请移步到Android开发频道。