我有一个活动,其信息可能超出活动的水平宽度,有没有办法添加水平滚动条,以便用户可以根据需要左右滚动?
我的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 开发相当陌生,只是想让这些信息看起来有点令人愉悦。