在Android Studio中,我根据需要使用scaleX和scaleY调整回收器视图的大小。但是,在缩小比例的同时,原本应由视图填充的空间仍然保留,这使我的布局更加混乱。我该如何解决?
这是Java代码:
RecyclerView mySet = findViewById(R.id.mySet);
mySet.setScaleX(0.7f);
mySet.setScaleY(0.7f);
这是xml:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center_vertical"
android:layout_weight="3">
<android.support.v7.widget.RecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mySet"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#e9eafc" />
<TextView
android:id="@+id/me"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="10"
android:fontFamily="@font/lemon"
android:text="YOU"
android:textAlignment="center"
android:textColor="@color/Gold"
android:textSize="18sp" />
<TextView
android:id="@+id/myScore"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="10"
android:fontFamily="@font/lemon"
android:text="0"
android:textAlignment="center"
android:textColor="@color/Gold"
android:textSize="18sp"/>
</LinearLayout>