Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/218.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 裁剪ImageView的左边缘_Android_Canvas_Imageview - Fatal编程技术网

Android 裁剪ImageView的左边缘

Android 裁剪ImageView的左边缘,android,canvas,imageview,Android,Canvas,Imageview,我试着得到上面图像旋转30度的结果,我试过这个 thumbnailView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() { @Override public void onGlobalLayout() { thumbnailView.getViewTreeObserver().removeOnGlo

我试着得到上面图像旋转30度的结果,我试过这个

thumbnailView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
        @Override
        public void onGlobalLayout() {
            thumbnailView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
            thumbnailView.setPivotX(thumbnailView.getWidth() * 8 / 9);
            thumbnailView.setPivotY(0);
            thumbnailView.setRotation(30);
        }
    });

不幸的是,这不是我想要的结果,如果有人能指导我如何实现这一点,我将非常感谢通过画布或代码,或者我应该创建一个custim ImageView或其他一些建议

layout.xml

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <ImageView
        android:id="@+id/progress_thumbnail"
        android:layout_width="@dimen/view_work_item_image_width"
        android:layout_height="match_parent"
        tools:ignore="ContentDescription"/>

        <CheckBox
            android:id="@+id/check_box_favorite"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentEnd="true"
            android:layout_alignParentTop="true"
            android:background="@android:color/transparent"
            android:button="@drawable/favorite_checkbox"
            android:paddingEnd="4dp"
            android:paddingTop="15dp"/>

        <TextView
            android:id="@+id/progress_title"
            android:layout_width="@dimen/view_work_item_progress_bar_size"
            android:layout_height="@dimen/view_work_item_progress_bar_size"
            android:layout_alignParentEnd="true"
            android:ellipsize="end"
            android:gravity="center"
            android:layout_below="@+id/check_box_favorite"
            android:layout_marginEnd="10dp"
            android:lines="1"
            android:maxLines="1"
            android:singleLine="true"
            android:textColor="#007DD6"
            android:textStyle="bold"/>

        <ProgressBar
            android:id="@+id/grading_progressBar"
            style="?android:attr/progressBarStyleHorizontal"
            android:layout_width="@dimen/view_work_item_progress_bar_size"
            android:layout_height="@dimen/view_work_item_progress_bar_size"
            android:layout_alignStart="@+id/progress_title"
            android:layout_alignTop="@+id/progress_title"
            android:background="@drawable/summary_tile_progress_background"
            android:max="100"
            android:progress="50"
            android:progressDrawable="@drawable/summary_tile_progress_bar"/>

        <TextView
            android:id="@+id/text_title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_toStartOf="@id/progress_title"
            android:layout_toEndOf="@id/progress_thumbnail"
            android:ellipsize="end"
            android:layout_centerVertical="true"
            android:lines="3"
            android:maxLines="3"
            android:paddingStart="2dp"
            android:paddingEnd="1dp"
            tools:text="@string/lorem_ispum_short"
            android:textAppearance="@style/WorkItemTitleText"/>

        <TextView
            android:id="@+id/text_author_sharedate"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_toStartOf="@id/work_item_action_container"
            android:ellipsize="end"
            android:paddingStart="2dp"
            android:paddingBottom="5dp"
            tools:text="@string/dummy_date"
            android:textAppearance="@style/TileAuthorText"/>

        <LinearLayout
            android:id="@+id/work_item_action_container"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentEnd="true"
            android:orientation="horizontal"
            android:layoutDirection="locale"
            android:paddingEnd="5dp"
            android:paddingStart="10dp"
            android:paddingTop="10dp"
            android:paddingBottom="5dp"
            android:layout_marginBottom="-5dp">

            <TextView
                android:id="@+id/workitem_continue_action"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@android:color/transparent"
                android:ellipsize="end"
                android:gravity="center_vertical"
                android:text="@string/workitem_continue"
                android:fontFamily="sans-serif-condensed"
                android:textColor="#494748"
                android:textSize="16sp"
                android:textStyle="bold"/>

            <ImageView
                android:id="@+id/workitem_continue_action_image"
                android:layout_width="20dp"
                android:layout_height="match_parent"
                android:scaleType="centerCrop"
                android:src="@drawable/continue_grading"/>

        </LinearLayout>

    </RelativeLayout>

您可以在布局中使用
旋转
属性,如下所示:

<YourView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:rotation="30"/>

好的,那么您应该执行以下操作:

<YourView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:rotation="30"/>
首先,你应该考虑使用约束布局。在那里,您可以轻松地将图像的右侧与布局的左侧对齐。像这样:

<android.support.constraint.ConstraintLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageView
        android:id="@+id/progress_thumbnail"
        android:layout_width="@dimen/view_work_item_image_width"
        android:layout_height="wrap_content"
        app:srcCompat="@drawable/yourSource"
        android:adjustViewBounds="true"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toStartOf="parent" />

</android.support.constraint.ConstraintLayout>

看起来有点复杂,但它应该可以工作。

只有在xml中是一样的,我需要去掉那个空白哦,我搞错了。那么,是右下角,你想成为旋转的角度点吗?你能提供布局吗?我想图像的右角位于布局的左角,我编辑了这个问题;)Thx,我明天会试试这个;)