<HorizontalScrollView 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" tools:context=".MainActivity" >
<LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" >
<TextView android:layout_width="200dip" android:layout_height="match_parent" android:background="#0000ff" android:gravity="center" android:text="@string/hello_world" />
<TextView android:layout_width="300dip" android:layout_height="match_parent" android:background="#00ff00" android:gravity="center" android:text="@string/hello_world" />
<TextView android:layout_width="400dip" android:layout_height="match_parent" android:background="#ff0000" android:gravity="center" android:text="@string/hello_world" /> </LinearLayout>
</HorizontalScrollView> |