android – 根据屏幕大小缩放可绘制的圆圈

我已经有一段时间了.我是一个新手
android开发人员.

我有一个可绘制的圆圈.

circular_shape.xml

<?xml version="1.0" encoding="utf-8"?>    
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:useLevel="false"
    android:shape="ring"
    android:thickness="0.8dp">
    <solid android:color="@android:color/holo_blue_dark"/>
</shape>

现在我想在我的活动布局中使用这个圆圈,使其覆盖整个屏幕.也就是说,屏幕的宽度应该等于圆的直径.
请注意,我没有设置圆的半径.

example_activity.xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/exampleLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.anil.raceorganizer.ExampleActivity">
    <ImageView
        android:id="@+id/race_field"
        android:src="@drawable/circular_shape"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@android:color/darker_gray"
        android:padding="0dp"
        android:layout_margin="0dp"
        ></ImageView>
</FrameLayout>

请注意,我已尝试将填充和边距设置为0,但它不起作用.
我也尝试通过代码设置ImageView的大小,但它只改变了ImageView的整体大小而不是单独的圆形.

这是我用这段代码得到的.

《android – 根据屏幕大小缩放可绘制的圆圈》

任何帮助是极大的赞赏.

最佳答案 你可以试试这段代码:

    < shape xmlns:android =“http://schemas.android.com/apk/res/android”

        机器人:形状=“环”

        机器人:厚度= “0.8dp”

        机器人:useLevel = “假”

        机器人:innerRadiusRatio = “2.1” >

        < solid android:color =“@ android:color / holo_blue_dark”/>

    < /形状>

点赞