Alejandro Matos Asked: 2020-07-27 19:07:34 +0800 CST 2020-07-27 19:07:34 +0800 CST 2020-07-27 19:07:34 +0800 CST 如何在 Android Studio 中随意放置按钮? 772 我在 Android Studio 中有一个严重的问题,那就是我在 Android Studio 中放置的所有按钮总是停留在左上角。 android-studio 1 Answers Voted Best Answer Jhair Arenas 2020-07-28T07:57:56+08:002020-07-28T07:57:56+08:00 当您创建布局或新活动时,它通常具有此代码 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> </LinearLayout> 尝试像这样将 LinearLayout 更改为 RelativeLayout <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> </RelativeLayout >
当您创建布局或新活动时,它通常具有此代码
尝试像这样将 LinearLayout 更改为 RelativeLayout