次のように、オブジェクトアニメーターを使用してそれを実行しようとしています:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true" >
<objectAnimator
android:duration="@android:integer/config_shortAnimTime"
android:propertyName="layout_height"
android:valueTo="300dp"
android:valueType="floatType" />
</item>
<item android:state_focused="false">
<objectAnimator
android:duration="@android:integer/config_shortAnimTime"
android:propertyName="layout_height"
android:valueTo="100dp"
android:valueType="floatType" />
</item>
</selector>
ただし、私が見る限り、CardviewsにはsetHeight
、setLayoutHeight
または他の同様の方法がないため、機能しません。では、どうすればカードの高さ (および同様の属性) を変更できますか?