如何在Android Studio上制作圆形(带圆圈)的ImageView框?

时间:2016-07-29 15:31:15

标签: android android-layout

我正在尝试创建圆形的图像视图而不是Android Studio中的方形(如Whats-app中的方形)。

这是我的xml文件

<?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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:background="@drawable/background"
    tools:context="com.example.ska89.xxxxxx.MainActivity">

    <ImageView
        android:layout_width="150dp"
        android:layout_height="150dp"
        android:id="@+id/imageView2"
        android:src="@drawable/logo"
        android:layout_marginTop="64dp"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:adjustViewBounds="false"
        android:clickable="false" />
</RelativeLayout>

谢谢。

1 个答案:

答案 0 :(得分:2)

在drawable文件夹中创建一个xml文件,例如circle_shape.xml,并编写如下代码

if ($("#container").width() > 553 ){
    $(".footer_links").css('width', $('.footer_div').innerWidth()-$('.footer_copyright').innerWidth()-$('.footer_design').innerWidth()-5);
}

然后在imageView中使用此circle_shape.xml作为此类背景

<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">

    <solid
        android:color="@color/colorRound"/>

    <size
        android:width="50dp"
        android:height="50dp"/>
</shape>