2017-01-23 106 views
0

This is instagram app我有一個表面視圖(匹配父母匹配父項)的活動,其中一半隱藏按鈕。是否可以只保存拍攝圖片的可見部分?我試圖讓表面視圖更小,但預覽在這種情況下旋轉或拉伸。我使用android.hardware.camera1順便說一句如何從相機預覽(表面視圖)裁剪圖像,並保存它,而不是像instagram應用程序的實際圖像捕獲bt相機?

<?xml version="1.0" encoding="utf-8"?> 
 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 
    xmlns:tools="http://schemas.android.com/tools" 
 
    android:id="@+id/activity_camera" 
 
    android:layout_width="match_parent" 
 
    android:layout_height="match_parent" 
 

 
    tools:context="uz.pages.yangiuz10.activity.CameraActivity"> 
 

 
    <SurfaceView 
 
     android:layout_width="match_parent" 
 
     android:layout_height="match_parent" 
 
     android:id="@+id/surface_camera"/> 
 

 

 
    <LinearLayout 
 
     android:layout_width="match_parent" 
 
     android:layout_height="match_parent" 
 
     android:orientation="vertical"> 
 

 
     <View 
 
      android:layout_width="match_parent" 
 
      android:layout_height="0dp" 
 
      android:layout_weight="1"/> 
 

 
     <RelativeLayout 
 
      android:layout_width="match_parent" 
 
      android:layout_height="0dp" 
 
      android:layout_weight="1" 
 
      android:background="@color/colorBackgroundText"> 
 

 
      <ImageButton 
 
       android:layout_width="wrap_content" 
 
       android:layout_height="wrap_content" 
 
       android:id="@+id/button_shot" 
 
       android:layout_centerHorizontal="true" 
 
       android:layout_centerVertical="true" 
 
       android:src="@drawable/shot_btn" 
 
       android:background="@null" 
 
       android:onClick="onPictureCapture"/> 
 

 
     </RelativeLayout> 
 
    </LinearLayout> 
 

 

 
</RelativeLayout>

Need to save only that visible part of image

+0

您使用surfaceView寬度和高度[match_parent在.XML..that就是爲什麼它會捕捉圖像在全屏模式下......即使你確實隱藏了SurfaceView的下面部分 –

+0

它在運行時需要全尺寸的表面視圖預覽...我也有同樣的Problem.i也隱藏了我的SurfaceView部件,和你一樣..區別在於你隱藏button.and我隱藏佈局 –

+0

我裁剪我捕獲的圖像。因爲我沒有找到了任何解決方案。 –

回答

相關問題