溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android Studio3.5格式化布局代碼時(shí)錯(cuò)位、錯(cuò)亂bug怎么辦

發(fā)布時(shí)間:2021-06-16 15:03:30 來源:億速云 閱讀:166 作者:小新 欄目:移動(dòng)開發(fā)

小編給大家分享一下Android Studio3.5格式化布局代碼時(shí)錯(cuò)位、錯(cuò)亂bug怎么辦,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

更新到3.5版本后,格式化布局文件代碼,會(huì)自動(dòng)給排序元素,導(dǎo)致界面布局錯(cuò)亂

解決辦法:

設(shè)置 > code style > XML 右上角 Set from然后選擇Predefined Style...>Android即可

Android Studio3.5格式化布局代碼時(shí)錯(cuò)位、錯(cuò)亂bug怎么辦

補(bǔ)充知識(shí):Android Studio:Reformat Code格式化Xml布局代碼后控件順序錯(cuò)亂

Android Studio升級(jí)3.5之后,遇到個(gè)奇葩問題,在布局xml文件中格式化代碼后,控件的順序都變了,這不是我們想要的結(jié)果,網(wǎng)上搜了一下,確實(shí)是AS3.5的鍋,每次升級(jí)都會(huì)遇到不同的問題,先記錄一下吧,以后有時(shí)間再研究為什么做的調(diào)整。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical"
 android:padding="16dp"
 tools:context="sun.geoffery.mvpdemo.MainActivity">

 <TextView
  android:id="@+id/text"
  android:layout_width="match_parent"
  android:layout_height="0dp"
  android:layout_weight="1"
  android:text="點(diǎn)擊按鈕獲取網(wǎng)絡(luò)數(shù)據(jù)" />

 <Button
  android:id="@+id/getData"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:text="獲取數(shù)據(jù)【成功】" />

 <Button
  android:id="@+id/getDataForFailure"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:text="獲取數(shù)據(jù)【失敗】" />

 <Button
  android:id="@+id/getDataForError"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:text="獲取數(shù)據(jù)【異?!?quot; />

</LinearLayout>

這個(gè)簡(jiǎn)單的布局界面大致如下圖所示:

Android Studio3.5格式化布局代碼時(shí)錯(cuò)位、錯(cuò)亂bug怎么辦

走你,Ctrl+Shift+F,格式化一把,再看我們的代碼:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical"
 android:padding="16dp"
 tools:context="sun.geoffery.mvpdemo.MainActivity">

 <Button
  android:id="@+id/getData"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:text="獲取數(shù)據(jù)【成功】" />

 <Button
  android:id="@+id/getDataForFailure"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:text="獲取數(shù)據(jù)【失敗】" />

 <Button
  android:id="@+id/getDataForError"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:text="獲取數(shù)據(jù)【異?!?quot; />

 <TextView
  android:id="@+id/text"
  android:layout_width="match_parent"
  android:layout_height="0dp"
  android:layout_weight="1"
  android:text="點(diǎn)擊按鈕獲取網(wǎng)絡(luò)數(shù)據(jù)" />

</LinearLayout>

原本最頂部的TextView被格式化到了最下面,一臉懵逼,界面如下:

Android Studio3.5格式化布局代碼時(shí)錯(cuò)位、錯(cuò)亂bug怎么辦

具體解決方法如下:

Settings–>Editor–> Code Style–>XML

點(diǎn)擊右上角的Set from->Predefined Style選擇Android后點(diǎn)擊OK保存,Perfect!

Android Studio3.5格式化布局代碼時(shí)錯(cuò)位、錯(cuò)亂bug怎么辦

再格式化代碼,就是我們想要的效果了

Android Studio3.5格式化布局代碼時(shí)錯(cuò)位、錯(cuò)亂bug怎么辦

看完了這篇文章,相信你對(duì)“Android Studio3.5格式化布局代碼時(shí)錯(cuò)位、錯(cuò)亂bug怎么辦”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI