Android - 在垂直线性布局中将两个 EditText 排成一行
Android - Put two EditTexts in one line in vertical Linear Layout
我有一个包含一些元素的垂直线性布局,但在一个位置我想要 1 行中的 2 个 EditText。我在其中使用了水平线性布局,但 Android Studio 表示这对性能非常不利。
有没有不用嵌套布局的方法? (XML 或以编程方式)
XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/cyan_50"
android:orientation="vertical"
tools:context="com.secutschett.RegisterActivity"
android:weightSum="100">
<android.support.design.widget.AppBarLayout
android:layout_width="fill_parent"
android:layout_height="?attr/actionBarSize"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="fill_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/cyan_700"
app:popupTheme="@style/AppTheme.PopupOverlay"
app:title="@string/app_name"
app:titleTextColor="@color/cyan_50" />
</android.support.design.widget.AppBarLayout>
<TextView
android:id="@+id/step1TextView"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10"
android:text="@string/step1TextViewText"
android:textAppearance="@style/TextAppearance.AppCompat.Headline" />
<TextView
android:id="@+id/placeholder1"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10" />
<EditText
android:id="@+id/step1UsernameEditText"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10"
android:hint="@string/step1UsernameEditTextHint"
android:inputType="text"
android:maxLines="1"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textColorHint="@color/blue_grey_400" />
<EditText
android:id="@+id/step1NicknameEditText"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10"
android:hint="@string/step1NicknameEditTextHint"
android:inputType="text"
android:maxLines="1"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textColorHint="@color/blue_grey_400" />
<TextView
android:id="@+id/placeholder2"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10"
android:orientation="horizontal">
<EditText
android:id="@+id/step1PasswordEditText"
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="50"
android:hint="@string/step1PasswordEditTextHint"
android:inputType="text|textPassword"
android:maxLines="1"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textColorHint="@color/blue_grey_400" />
<EditText
android:id="@+id/step1RepeatPasswordEditText"
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="50"
android:hint="@string/step1RepeatPasswordEditTextHint"
android:inputType="text|textPassword"
android:maxLines="1"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textColorHint="@color/blue_grey_400" />
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10"
android:orientation="horizontal">
<EditText
android:id="@+id/step1EmailAddressEditText"
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="50"
android:hint="@string/step1EmailAddressEditTextHint"
android:inputType="text|textEmailAddress"
android:maxLines="1"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textColorHint="@color/blue_grey_400" />
<EditText
android:id="@+id/step1RepeatEmailAddressEditText"
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="50"
android:hint="@string/step1RepeatEmailAddressEditTextHint"
android:inputType="text|textEmailAddress"
android:maxLines="1"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textColorHint="@color/blue_grey_400" />
</LinearLayout>
<TextView
android:id="@+id/placeholder3"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10"
android:orientation="horizontal">
<Button
android:id="@+id/step1RegisterButton"
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="30"
android:text="@string/registerButtonName" />
<TextView
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="10" />
<CheckBox
android:id="@+id/step1AgreeCheckBox"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="10" />
<TextView
android:id="@+id/step1PoliciesTextView"
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="50"
android:maxLines="10"
android:text="@string/step1PoliciesTextViewText"
android:textColorLink="@color/blue_500" />
</LinearLayout>
<com.roide.progressdotslib.ProgressDotWidget
android:id="@+id/progress_dots1"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10"
android:background="@color/cyan_600"
android:padding="@dimen/standard_margins" />
</LinearLayout>
How it should look
采用垂直布局,在垂直布局中采用水平布局显示 像这样编辑文字..
<Linear
orientation:"Linear">
<Linear
orientation:"Horizontal">
<Linear
orientation:"Horizontal">
<EditText/>
</Linear>
</Linear>
Android Studio says that this is very bad for performance.
不要担心这个警告。
嵌套布局确实更昂贵(就系统渲染它们所花费的时间和保存 View
对象的内存而言),但一些嵌套视图不会有任何对您应用的性能产生明显的负面影响。通常,您真正需要担心嵌套视图的唯一地方是当您在 ListView
或 RecyclerView
.
的每个项目中使用深层嵌套层次结构时
这是一个 Google 博客 post,他们在其中讨论使用 ConstraintLayout
创建完全平坦的视图层次结构的性能优势:https://android-developers.googleblog.com/2017/08/understanding-performance-benefits-of.html
如果滚动到最后,您会看到绘制平面层次结构大约需要 0.5 毫秒,而绘制嵌套层次结构大约需要 0.7 毫秒。这是一个很大的相对差异,但就绝对速度而言,您在 0.7 毫秒时 很好 在安全范围内 window。
Is there a way of doing this without nested layouts? (XML or programmatically)
是的。您可以使用 ConstraintLayout
来完成。有很多developer guides for ConstraintLayout
,这里就不赘述了
使用它将为您提供上述所有性能优势。这样做的代价是您的 XML 代码会稍微复杂一些。在现有行的中间添加一个新行将意味着您必须对已有的内容进行更多更改,而不是将新行放入并完成。可以肯定的是,这不是一个很大的成本,但这是需要考虑的事情。
我有一个包含一些元素的垂直线性布局,但在一个位置我想要 1 行中的 2 个 EditText。我在其中使用了水平线性布局,但 Android Studio 表示这对性能非常不利。
有没有不用嵌套布局的方法? (XML 或以编程方式)
XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/cyan_50"
android:orientation="vertical"
tools:context="com.secutschett.RegisterActivity"
android:weightSum="100">
<android.support.design.widget.AppBarLayout
android:layout_width="fill_parent"
android:layout_height="?attr/actionBarSize"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="fill_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/cyan_700"
app:popupTheme="@style/AppTheme.PopupOverlay"
app:title="@string/app_name"
app:titleTextColor="@color/cyan_50" />
</android.support.design.widget.AppBarLayout>
<TextView
android:id="@+id/step1TextView"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10"
android:text="@string/step1TextViewText"
android:textAppearance="@style/TextAppearance.AppCompat.Headline" />
<TextView
android:id="@+id/placeholder1"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10" />
<EditText
android:id="@+id/step1UsernameEditText"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10"
android:hint="@string/step1UsernameEditTextHint"
android:inputType="text"
android:maxLines="1"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textColorHint="@color/blue_grey_400" />
<EditText
android:id="@+id/step1NicknameEditText"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10"
android:hint="@string/step1NicknameEditTextHint"
android:inputType="text"
android:maxLines="1"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textColorHint="@color/blue_grey_400" />
<TextView
android:id="@+id/placeholder2"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10"
android:orientation="horizontal">
<EditText
android:id="@+id/step1PasswordEditText"
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="50"
android:hint="@string/step1PasswordEditTextHint"
android:inputType="text|textPassword"
android:maxLines="1"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textColorHint="@color/blue_grey_400" />
<EditText
android:id="@+id/step1RepeatPasswordEditText"
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="50"
android:hint="@string/step1RepeatPasswordEditTextHint"
android:inputType="text|textPassword"
android:maxLines="1"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textColorHint="@color/blue_grey_400" />
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10"
android:orientation="horizontal">
<EditText
android:id="@+id/step1EmailAddressEditText"
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="50"
android:hint="@string/step1EmailAddressEditTextHint"
android:inputType="text|textEmailAddress"
android:maxLines="1"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textColorHint="@color/blue_grey_400" />
<EditText
android:id="@+id/step1RepeatEmailAddressEditText"
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="50"
android:hint="@string/step1RepeatEmailAddressEditTextHint"
android:inputType="text|textEmailAddress"
android:maxLines="1"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textColorHint="@color/blue_grey_400" />
</LinearLayout>
<TextView
android:id="@+id/placeholder3"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10"
android:orientation="horizontal">
<Button
android:id="@+id/step1RegisterButton"
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="30"
android:text="@string/registerButtonName" />
<TextView
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="10" />
<CheckBox
android:id="@+id/step1AgreeCheckBox"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="10" />
<TextView
android:id="@+id/step1PoliciesTextView"
android:layout_width="0dip"
android:layout_height="fill_parent"
android:layout_weight="50"
android:maxLines="10"
android:text="@string/step1PoliciesTextViewText"
android:textColorLink="@color/blue_500" />
</LinearLayout>
<com.roide.progressdotslib.ProgressDotWidget
android:id="@+id/progress_dots1"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="10"
android:background="@color/cyan_600"
android:padding="@dimen/standard_margins" />
</LinearLayout>
How it should look
采用垂直布局,在垂直布局中采用水平布局显示 像这样编辑文字..
<Linear
orientation:"Linear">
<Linear
orientation:"Horizontal">
<Linear
orientation:"Horizontal">
<EditText/>
</Linear>
</Linear>
Android Studio says that this is very bad for performance.
不要担心这个警告。
嵌套布局确实更昂贵(就系统渲染它们所花费的时间和保存 View
对象的内存而言),但一些嵌套视图不会有任何对您应用的性能产生明显的负面影响。通常,您真正需要担心嵌套视图的唯一地方是当您在 ListView
或 RecyclerView
.
这是一个 Google 博客 post,他们在其中讨论使用 ConstraintLayout
创建完全平坦的视图层次结构的性能优势:https://android-developers.googleblog.com/2017/08/understanding-performance-benefits-of.html
如果滚动到最后,您会看到绘制平面层次结构大约需要 0.5 毫秒,而绘制嵌套层次结构大约需要 0.7 毫秒。这是一个很大的相对差异,但就绝对速度而言,您在 0.7 毫秒时 很好 在安全范围内 window。
Is there a way of doing this without nested layouts? (XML or programmatically)
是的。您可以使用 ConstraintLayout
来完成。有很多developer guides for ConstraintLayout
,这里就不赘述了
使用它将为您提供上述所有性能优势。这样做的代价是您的 XML 代码会稍微复杂一些。在现有行的中间添加一个新行将意味着您必须对已有的内容进行更多更改,而不是将新行放入并完成。可以肯定的是,这不是一个很大的成本,但这是需要考虑的事情。