私のTextViewがActivityの右側にあるScrollViewと交差する理由と、それを修正する方法は?TextViewとScrollViewが交差する理由
これは私の活動のスクリーンショットです。
これが私の活動のコードのXMLです。
<?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="match_parent"
android:layout_marginBottom="16dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_marginTop="16dp"
android:orientation="vertical">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/rules"
android:textSize="@dimen/text_font_tall"
android:textStyle="bold|italic" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="start"
android:text="@string/rules_text"
android:textSize="@dimen/text_font_medium" />
</LinearLayout>
</ScrollView>
</LinearLayout>
ScrollViewのプロパティscrollbarStyleを確認してください。 https://developer.android.com/reference/android/view/View.html#attr_android:scrollbarStyle outsideInsetまたはoutsideOverlayを使用 – njzk2