我有由Baseadapter类实现的自定义gridview列表。每个网格包含三个textview。 我已经准备好代码,我只想使用ScaleGesture缩放整个网格列表的解决方案。 缩放后,它应沿垂直和水平方向滚动。 注意:-我不希望使用zoomcontrols缩放它
here is my output's screenshot
这是我的XML
r0to255
Java
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".Calendar">
<GridView
android:id="@+id/dateGrid"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:numColumns="6"
>
</GridView>
</LinearLayout>
请帮助我刚接触android,请详细说明答案