我正在尝试创建第二个活动并在其中添加一个按钮,但xml文件的设计视图不显示任何内容。
XML文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button2"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true"
android:layout_marginStart="85dp" />
</RelativeLayout>
设计视图显示没有这样的
答案 0 :(得分:0)
只需给出按钮背景。
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:background="#000000" // This is Black Color
android:id="@+id/button2"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true"
android:layout_marginStart="85dp" />