Android布局边框隐藏背景角

时间:2018-09-13 00:46:26

标签: android android-layout

我在应用程序中设计了一个弹出窗口,并使用以下可绘制形状作为边框:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
    <corners android:radius="20dp"/>
    <padding android:left="20dp" android:right="20dp" android:top="10dp" android:bottom="20dp"/>
    <solid android:color="@android:color/holo_green_light"/>
    <stroke android:color="@android:color/black" android:width="2dp"/>
</shape>

这是我的布局XML的样子:

<?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"
    tools:context=".popChart"
    android:background="@drawable/customborder"
    >

    <ImageView
        android:id="@+id/closeIcon"
        android:layout_width="25dp"
        android:layout_height="25dp"
        android:layout_alignParentEnd="true"
        android:src="@drawable/close" />

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:paddingTop="30dp">

        <com.github.mikephil.charting.charts.LineChart
            android:id="@+id/lineC"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@android:color/white"
            tools:layout_editor_absoluteX="8dp"
            tools:layout_editor_absoluteY="8dp" />
    </RelativeLayout>

</RelativeLayout>

边框很好,但此可绘制背景的白色角仍然可见:

enter image description here

由于我在此弹出窗口后面的背景不是纯色,因此白色的角突出并且看起来不好。有没有办法摆脱它们或使其透明?

1 个答案:

答案 0 :(得分:0)

最可能的问题是您的主题窗口具有白色背景色。您需要定义一个新主题:

<style name="customStyle" parent="@android:style/Theme.Dialog">
    <item name="android:windowBackground">@android:color/transparent</item>
</style>

然后将其应用于您的窗口:

new PopupWindow(new ContextThemeWrapper(context, R.style.customStyle)))
// Set your window size and focusable if needed...