浏览代码

photo video scale

liuzhenxing1118 2 年之前
父节点
当前提交
9dca8392ab
共有 2 个文件被更改,包括 7 次插入3 次删除
  1. 3 2
      app/src/main/res/layout/chat_fragment_photo.xml
  2. 4 1
      app/src/main/res/layout/chat_fragment_video.xml

+ 3 - 2
app/src/main/res/layout/chat_fragment_photo.xml

@@ -9,8 +9,9 @@
     <ImageView
         android:id="@+id/mItemPhoto"
         android:layout_width="match_parent"
-        android:layout_height="match_parent"
-        android:scaleType="fitXY"
+        android:layout_height="wrap_content"
+        android:layout_centerInParent="true"
+        android:scaleType="centerCrop"
         />
 
     <TextView

+ 4 - 1
app/src/main/res/layout/chat_fragment_video.xml

@@ -9,7 +9,10 @@
     <SurfaceView
         android:id="@+id/surfaceView"
         android:layout_width="match_parent"
-        android:layout_height="match_parent" />
+        android:layout_height="wrap_content"
+        android:layout_centerInParent="true"
+        android:scaleType="centerCrop"
+        />
 
     <TextView
         android:id="@+id/mNoFileText"