1

我正在开发一个应用程序,其中 2 个视频缩略图显示在主要活动中,如下所示:

在此处输入图像描述

视频缩略图只不过是逐帧显示图像的 ImageView。

现在我们想要的是,在特定视频缩略图上的点击活动,这将放大该视频,其他视频将消失。为了向我的应用程序提供该功能,我创建了全屏大小的新窗口,并使用以下方法缩放视频帧:

 bit=Bitmap.createScaledBitmap(bit, 200, 280, true);

然后我像往常一样使用 onDraw(); 显示它。

当我在模拟器上运行此应用程序并单击其中一个缩略图时,我得到一个扭曲的缩放视频帧,如下所示: 在此处输入图像描述

虽然我期待缩略图的完美缩放版本。谁能帮我理解为什么在这种情况下框架会变形?

我的 XML 文件如下

我的主要活动 xml 文件 - main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:padding="5dip"
android:orientation="horizontal"
android:id="@+id/myScreen" >

<LinearLayout
android:orientation="vertical"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_gravity="center"
android:paddingLeft="10dip"
android:paddingRight="10dip" >
    <TableLayout android:layout_width="wrap_content" android:id="@+id/tableLayout1" android:layout_height="wrap_content" android:layout_gravity="center">
        <TableRow android:id="@+id/tableRow1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="20dip">
         <callback.two.videos.display  
        android:id="@+id/iv"
        android:layout_height="120dp" android:visibility="visible" android:paddingRight="10dip" android:layout_width="fill_parent" android:layout_marginRight="10dp"/>
   <callback.two.videos.display1  
        android:id="@+id/iv1"
        android:layout_height="120dp" android:visibility="visible" android:paddingLeft="10dip" android:layout_width="fill_parent" android:layout_marginLeft="10dp"/>   
         </TableRow>

    </TableLayout>
</LinearLayout>
</LinearLayout>

和 FullSceen Window 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" >

    <callback.two.videos.display android:id="@+id/full_image_view"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:onClick="handleClick"/>

</LinearLayout>
4

0 回答 0