我有一些数据放在我的ScrollView.我想让它放大/缩小.它包含简单ImageView和TextView.
任何建议都会有所帮助.谢谢.
这是我的代码:
<ScrollView
android:id="@+id/viewSoupMenu"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/soupback" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginTop="50dp">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="35dp"
android:layout_marginTop="30dp"
android:background="@android:color/transparent"
android:src="@drawable/flowericon" />
<ImageButton
android:id="@+id/btnVegClearSoup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginTop="20dp"
android:background="@android:color/transparent"
android:src="@drawable/btnvegsoupclearclickedxml" />
</LinearLayout>
</ScrollView>
Run Code Online (Sandbox Code Playgroud)