xml に Listview があります。そのような構造:
<ListView
android:id="@+id/SeriesCastListItemView"
android:paddingTop="10dip"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:divider="#FFFFFF"
android:dividerHeight="1px"/>
Listview
ここで、Java コードで高さを設定したいと思います。私は次のコードで試しています。
ListView castListItemView = (ListView) findViewById(R.id.SeriesCastListItemView);
castListItemView.setAdapter(new CastAdapter(this, castDescriptionArr));
castListItemView.setLayoutParams(new ListView.LayoutParams(LayoutParams.FILL_PARENT, 500));
しかし、それは与えjava.lang.ClassCastException: android.widget.AbsListView$LayoutParams
ます。私のコードの問題は何ですか?