如何从新创建的自定义布局中删除背景

时间:2018-06-01 22:23:49

标签: android layout

我最近搬到了新的PC,并下载了最新版本的Android Studio。

现在,当我想创建自定义布局并在我的项目中使用它时,它显示如下:

enter image description here

早些时候,当我创建布局时,它有深灰色背景,如果我有白色图像视图,我可以很清楚地看到发生了什么。我该如何解决这个问题?

我的布局代码:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    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">

    <TextView
        android:id="@+id/textView2"
        android:layout_width="180dp"
        android:layout_height="79dp"
        android:gravity="center_vertical|center_horizontal"
        android:text="TextView"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>

1 个答案:

答案 0 :(得分:0)

1)您可以使用android:background属性为所需视图设置背景。

2)您可以在Android Studio界面设计器中选择其他主题,或者为文件values/styles.xml中的默认应用主题指定必要的属性。

只有两个明显的建议,你的问题应该有更多细节才能回答。