在Android布局中重新格式化代码

时间:2017-04-25 14:53:16

标签: android android-studio

当我按下代码 - >重新格式代码
布局成为这种形状

<android.support.design.widget.TextInputLayout android:id="@id/til_full_name"
      android:layout_width="0dp" android:layout_height="wrap_content" app:errorEnabled="true"
      app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent"
      app:layout_constraintRight_toRightOf="parent"
      app:layout_constraintTop_toBottomOf="@id/tv_choose_picture"
      app:layout_constraintVertical_bias="0.1">

      <android.support.design.widget.TextInputEditText android:id="@id/et_full_name"
        android:layout_width="match_parent" android:layout_height="wrap_content"
        android:drawableRight="@mipmap/name" android:gravity="right"
        android:hint="@string/full_name" android:inputType="textCapWords" />  

但我需要它像这样

 <android.support.design.widget.TextInputLayout 
      android:id="@id/til_full_name"
      android:layout_width="0dp" 
      android:layout_height="wrap_content" 
      app:errorEnabled="true"
      app:layout_constraintBottom_toBottomOf="parent" 
      app:layout_constraintLeft_toLeftOf="parent"
      app:layout_constraintRight_toRightOf="parent"
      app:layout_constraintTop_toBottomOf="@id/tv_choose_picture"
      app:layout_constraintVertical_bias="0.1">

      <android.support.design.widget.TextInputEditText 
        android:id="@id/et_full_name"
        android:layout_width="match_parent" 
        android:layout_height="wrap_content"
        android:drawableRight="@mipmap/name" 
        android:gravity="right"
        android:hint="@string/full_name" 
        android:inputType="textCapWords" />  

我不知道是什么改变了我尝试将所有内容重置为默认格式的默认格式,但我需要一些帮助解决此问题

2 个答案:

答案 0 :(得分:1)

您是否尝试过Ctrl + Alt + L,如果遇到任何问题则还原

答案 1 :(得分:1)

在Android Studio中使用“设置 - &gt;编辑器 - &gt;代码样式 - &gt; XML - &gt;其他 - &gt;包装属性”