Используя ConstraintLayout
, вы можете сделать это следующим образом:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/pref_list_item_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:fontFamily="sans-serif"
android:text="Long long asdasd asd asd aasdadasd"
android:textSize="@dimen/preference_text_size"
app:layout_constrainedWidth="true"
app:layout_constraintHorizontal_chainStyle="packed"
app:layout_constraintHorizontal_bias="0"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/pref_list_item_help_button"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
<ImageView
android:id="@+id/pref_list_item_help_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toEndOf="@id/pref_list_item_title"
android:layout_margin="8dp"
android:src="@drawable/ic_help_primary_color"
android:contentDescription="@string/help"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/pref_list_item_switch"
app:layout_constraintStart_toEndOf="@id/pref_list_item_title"
app:layout_constraintTop_toTopOf="parent"/>
<Switch
android:id="@+id/pref_list_item_switch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="16dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
</android.support.constraint.ConstraintLayout>
TextView
и ImageView
объединены вместе в стиле packed
и горизонтальном смещении 0
, чтобы сохранить ихвыровнен влево.app:layout_constrainedWidth="true"
должен быть установлен для TextView
, чтобы он не перекрывался с другими Views
в случае, если текст становится слишком длинным.Все это также хорошо работает, когда вы хотите переключить ImageView's
видимость.