我试图构建一个圆形图像视图,但当我构建项目时,一些属性出现错误:
不知道怎么解决,可能是build.gradle
缺少一些额外的库吧,我的布局代码如下:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="pl.educativo.diagonalcutview.MainActivity">
<RelativeLayout
android:id="@+id/background"
android:layout_width="match_parent"
android:layout_height="300dp"
android:background="@drawable/activity_background" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/background"
android:layout_marginStart="20dp"
android:layout_marginLeft="20dp"
android:layout_marginTop="-100dp">
<ImageView
android:layout_width="150dp"
android:layout_height="150dp"
android:src="@drawable/bebe2"
android:civ_border="true"
android:civ_border_color="@color/semiTransparentWhite"
android:civ_border_width="10dp"
android:contentDescription="TODO" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginStart="12dp"
android:layout_marginEnd="12dp"
android:layout_marginBottom="24dp"
android:layout_gravity="bottom">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="sans-serif-light"
android:text="@string/bebe_rexha"
android:textSize="30sp"
android:textColor="@android:color/black"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="sans-serif-light"
android:text="musician, singer, songwriter"
android:textSize="14sp"/>
</LinearLayout>
</LinearLayout>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:layout_marginTop="24dp"
app:theme="@style/TransparentBar">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="sans-serif-light"
android:gravity="center_vertical"
android:text="About"
android:textSize="24sp" />
</android.support.v7.widget.Toolbar>
</RelativeLayout>
5条答案
按热度按时间eit6fx6z1#
在应用程序级别build.gradle文件中使用此库
它会被这样使用
它还有许多其他属性可以检查:
https://github.com/hdodenhof/CircleImageView
k5hmc34c2#
首先,我怀疑ImageView中是否有属性civ_(Something),因为我的知识是这样的。但是,您尝试用途:
https://github.com/hdodenhof/CircleImageView
那么代码应该是这样的:
但您需要使用(在Gradle文件中):
hmae6n7t3#
将
compile 'com.mikhaellopez:circularimageview:3.0.2'
添加到gradle中,并使用洛佩斯Mikhael的CircularImageView
(项目自述文件中的代码片段)而不是图像视图
vqlkdk9b4#
将此实现添加到build.gradle(app)
“
zz2j4svz5#
你可以使用ShapeableImageView制作圆形图像。它非常容易使用。它来自材料组件库。在你的布局中,放置这个ShapeableImageView。
对于圆形图像,在ShapeableImageView中添加一个属性- shapeAppearanceOverlay。
在您的styles.xml中,添加样式circleImageView。