我有一个矢量drawable的问题,我将其设置为RelativeLayout的背景。它没有水平填充屏幕。
以下是我的RelativeLayout的代码:
<vector android:height="24dp" android:viewportHeight="110.0"
android:viewportWidth="110.0" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:name="border_path" android:fillColor="@color/color_1" android:fillAlpha="1"
android:pathData="M105.13,107.51L4.89,107.51A2.38,2.38 99.69,0 1,2.51 105.13L2.51,4.89A2.38,2.38 119.37,0 1,4.89 2.51L105.13,2.51A2.38,2.38 119.37,0 1,107.51 4.89L107.51,105.13A2.38,2.38 99.69,0 1,105.13 107.51z"
android:strokeAlpha="1" android:strokeColor="@color/color_2" android:strokeWidth="5"/>
</vector>
矢量Drawable my_drawable,如果它有助于发布它:
{{1}}
任何建议/解决方案都非常感谢!
答案 0 :(得分:0)
将图片视图置于框架布局
中<?xml version="1.0" encoding="utf-8"?>
<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">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY"
android:src="@drawable/sample"
android:text="Hello World!" />
</FrameLayout>
</RelativeLayout>
答案 1 :(得分:0)
看起来你生成的矢量drawable的源图像包含一些填充。确保将其移除并再次重新生成可绘制的。
答案 2 :(得分:0)
我知道这不是我想要的解决方案,但我只是创建了一个形状可绘制的XML,而不是使用向量。我的目标是实现阴影,因此我开始导入SVG,但实际上我能够通过图层列表来实现阴影。
如果有人偶然发现解决方案,我很想知道。
全部谢谢!