如何进行移动和扩展活动

时间:2017-04-29 18:43:29

标签: android imageview gallery

我希望用户上传他的个人资料图片,但我想强迫他以前裁剪。

我该怎么做?

like this

我尝试从头开始,但我会花很多时间,是否有任何图书馆可以为我做这个工作?

2 个答案:

答案 0 :(得分:0)

您可以使用Picasso库。它非常易于使用。

例如:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black"
>

<!-- TODO: Update blank fragment layout -->
<TextView
    android:id="@+id/tvEKYCCamera"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="@string/hello_blank_fragment" />

<FrameLayout
    android:id="@+id/camera_preview"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:background="@color/black"
    />

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_centerInParent="true"
    android:orientation="vertical"
    android:gravity="center"
    >
    <View
        android:id="@+id/myRectangleView"
        android:layout_width="300dp"
        android:layout_height="300dp"
        android:background="@drawable/rectangle"
        />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Place ID Within Here"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_alignParentBottom="true"
android:orientation="horizontal"
android:gravity="center">
    <Button
        android:id="@+id/button_capture"
        android:text=""
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:layout_margin="10dp"
        android:background="@drawable/camera_button"
        />
</LinearLayout>

答案 1 :(得分:0)

有几种方法可做,首先和建议的方式使用或用android intent处理它

  

com.android.camera.action.CROP

在你自己的

我暂时使用这个库,这很棒

https://github.com/ArthurHub/Android-Image-Cropper