TextView 与其他组件重叠
TextView overlapping other components
这是我的 TextView 问题:
我有一个与其他 TextView 重叠的 TextView,如下所示:
My problem
这很奇怪,因为当我在预览中有很长的文本时,我有这个:
What I want
这是我的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/margin_between_evenement"
android:background="@drawable/background_evenement">
<ImageView
android:id="@+id/icon_evenement"
android:layout_width="@dimen/icon_sport_evenement"
android:layout_height="@dimen/icon_sport_evenement"
android:layout_centerVertical="true"
android:layout_marginStart="@dimen/margin_left_icon_evenement"
android:layout_marginLeft="@dimen/margin_left_icon_evenement"
android:src="@drawable/tennis_icon" />
<TextView
android:id="@+id/intitule"
android:textSize="14sp"
app:autoSizeTextType="uniform"
android:layout_width="@dimen/width_of_intitule_evenement"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/margin_left_intitule_evenement"
android:layout_marginLeft="@dimen/margin_left_intitule_evenement"
android:layout_toEndOf="@+id/icon_evenement"
android:layout_toRightOf="@+id/icon_evenement"
android:text="That's my TextView which is too long and it's a problem because it's over other TextView" />
<TextView
android:id="@+id/choix"
android:layout_width="@dimen/width_of_prono_evenement"
android:gravity="center"
android:layout_height="wrap_content"
android:layout_below="@+id/intitule"
android:textStyle="bold"
android:layout_centerHorizontal="true"
android:text="Marseille" />
<LinearLayout
android:orientation="horizontal"
android:layout_centerVertical="true"
android:layout_alignParentEnd="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true">
<TextView
android:id="@+id/cote"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="@dimen/margin_right_cote_evenement"
android:text="1.88"
android:layout_marginEnd="@dimen/margin_right_cote_evenement" />
<ImageView
android:src="@drawable/icon_pending"
android:layout_marginRight="@dimen/margin_right_icon_status_evenement"
android:id="@+id/status_icon"
android:layout_width="@dimen/icon_status_evenement"
android:layout_height="@dimen/icon_status_evenement"
android:layout_marginEnd="@dimen/margin_right_icon_status_evenement" />
</LinearLayout>
</RelativeLayout>
</LinearLayout>
我正在以编程方式设置这样的文本:
editText.setText(e.getText());
感谢您的关注,对不起我的英语:)
所以您希望文本视图在另一个文本视图开始的地方结束,对吧?
您可以将相对布局更改为约束布局并添加 app:layout_constraintEnd_toStartOf="@id/view"
这将使您的文本视图仅在另一个开始的地方结束
这是我的 TextView 问题:
我有一个与其他 TextView 重叠的 TextView,如下所示:
My problem
这很奇怪,因为当我在预览中有很长的文本时,我有这个:
What I want
这是我的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/margin_between_evenement"
android:background="@drawable/background_evenement">
<ImageView
android:id="@+id/icon_evenement"
android:layout_width="@dimen/icon_sport_evenement"
android:layout_height="@dimen/icon_sport_evenement"
android:layout_centerVertical="true"
android:layout_marginStart="@dimen/margin_left_icon_evenement"
android:layout_marginLeft="@dimen/margin_left_icon_evenement"
android:src="@drawable/tennis_icon" />
<TextView
android:id="@+id/intitule"
android:textSize="14sp"
app:autoSizeTextType="uniform"
android:layout_width="@dimen/width_of_intitule_evenement"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/margin_left_intitule_evenement"
android:layout_marginLeft="@dimen/margin_left_intitule_evenement"
android:layout_toEndOf="@+id/icon_evenement"
android:layout_toRightOf="@+id/icon_evenement"
android:text="That's my TextView which is too long and it's a problem because it's over other TextView" />
<TextView
android:id="@+id/choix"
android:layout_width="@dimen/width_of_prono_evenement"
android:gravity="center"
android:layout_height="wrap_content"
android:layout_below="@+id/intitule"
android:textStyle="bold"
android:layout_centerHorizontal="true"
android:text="Marseille" />
<LinearLayout
android:orientation="horizontal"
android:layout_centerVertical="true"
android:layout_alignParentEnd="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true">
<TextView
android:id="@+id/cote"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="@dimen/margin_right_cote_evenement"
android:text="1.88"
android:layout_marginEnd="@dimen/margin_right_cote_evenement" />
<ImageView
android:src="@drawable/icon_pending"
android:layout_marginRight="@dimen/margin_right_icon_status_evenement"
android:id="@+id/status_icon"
android:layout_width="@dimen/icon_status_evenement"
android:layout_height="@dimen/icon_status_evenement"
android:layout_marginEnd="@dimen/margin_right_icon_status_evenement" />
</LinearLayout>
</RelativeLayout>
</LinearLayout>
我正在以编程方式设置这样的文本:
editText.setText(e.getText());
感谢您的关注,对不起我的英语:)
所以您希望文本视图在另一个文本视图开始的地方结束,对吧?
您可以将相对布局更改为约束布局并添加 app:layout_constraintEnd_toStartOf="@id/view"
这将使您的文本视图仅在另一个开始的地方结束