Java 线性布局,带有剪切的文本和图像视图

Java 线性布局,带有剪切的文本和图像视图,java,android,android-layout,android-imageview,Java,Android,Android Layout,Android Imageview,目前这是我的观点,如图所示 我需要图像视图以裁剪格式显示,如图所示 提前感谢使用和使用RelativeLayout将图像放置在TextView上我只需要一面是圆形 <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="1" android:orientation

目前这是我的观点,如图所示 我需要图像视图以裁剪格式显示,如图所示


提前感谢

使用和使用RelativeLayout将图像放置在TextView上

我只需要一面是圆形
 <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:orientation="horizontal">
        <TextView
            android:layout_width="match_parent"
            android:layout_weight="1"
            android:layout_height="match_parent" />

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:id="@+id/curvedimage" />

    </LinearLayout>