0

アクティビティの横幅を超える情報を含む可能性のあるアクティビティがあります。ユーザーが必要に応じて左右にスクロールできるように、水平スクロール バーを追加する方法はありますか?

私の activity_fuel.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
<TableLayout android:id="@+id/TableLayout01" android:layout_width="fill_parent" android:layout_height="wrap_content"  android:stretchColumns="0">

  <TableRow 
      android:id="@+id/TableRow01" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content">    

    <TextView
        android:id="@+id/TextView01"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/cell_shape"
        android:enabled="true"
        android:scrollHorizontally="true"
        android:text="@string/title_activity_address"
        android:textStyle="bold"
        android:width="100px" >

    </TextView>
    <TextView 
        android:id="@+id/textView02" 
        android:background="@drawable/cell_shape"
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:text="@string/title_activity_phone"
        android:width="150px"
        android:textStyle="bold">
    </TextView>

    <TextView
        android:id="@+id/TextView03"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/cell_shape"
        android:scrollHorizontally="true"
        android:text="@string/title_activity_distance"
        android:textStyle="bold"
        android:width="100px" >
    </TextView>
  </TableRow>
</TableLayout>  


</RelativeLayout>

私は Android の開発にかなり慣れていないので、この情報を目に心地よいものにしようとしています。

4

1 に答える 1