2番目のアクティビティを作成し、その中にボタンを追加しようとしていますが、xmlファイルのデザインビューには何も表示されません。2番目のアクティビティはAndroidスタジオで何も表示されません
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>
デザインビューは、ちょうどあなたのボタンの背景を与えるこの
ボタンに背景色を指定してください –
このxmlに問題はありません。 –
追加された色は表示されません。表示するには、まずマニフェストファイルにアクティビティを追加する必要がありますか? –