我有 5 个按钮我想滚动它们所有的按钮,我的代码是
<Button android:id="@+id/btnAll" android:layout_height="wrap_content" android:layout_width="80dip" android:text="All" android:background="@drawable/green1" /> <Button android:id="@+id/btnBarAndRes" android:layout_height="wrap_content" android:layout_width="80dip" android:text="Bar Restaurants" android:layout_toRightOf="@+id/btnAll" android:background="@drawable/green1" /> <Button android:id="@+id/btnFashion" android:layout_height="wrap_content" android:layout_width="80dip" android:text="FashionBeauty" android:layout_toRightOf="@+id/btnBarAndRes" android:background="@drawable/green1"/> <Button android:id="@+id/btnParty" android:layout_height="wrap_content" android:layout_width="80dip" android:text="PartyEntertainment" android:layout_toRightOf="@+id/btnFashion" android:background="@drawable/green1" /> <Button android:id="@+id/btnLife" android:layout_height="wrap_content" android:layout_width="80dip" android:text="Life Style" android:layout_toRightOf="@+id/btnParty" android:background="@drawable/green1" /> </RelativeLayout> </ScrollView> </RelativeLayout>