我正在加载带有关闭按钮和滑动按钮的 web 视图。当我点击
主要的.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#FFFFFF"
android:layout_marginRight="25dip"
android:layout_marginTop="25dip"
android:layout_marginLeft="25dip"
android:layout_marginBottom="25dip" >
<WebView
android:id="@+id/webac_larger"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</WebView>
<ImageView android:id="@+id/close_btn"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/close_button"
android:layout_marginTop="-3dip"
android:layout_marginRight="0dip"
/>
<ImageButton
android:id="@+id/slidebutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/close_btn"
android:src="@drawable/arrowleft" />
我想通过单击按钮来调整 webview 的大小。
final ImageButton button1 = (ImageButton) findViewById(R.id.slidebutton);
button1.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Log.d("MultiWeb", "I have clicked the button");
RelativeLayout params = ((RelativeLayout )button1.getParent());
params.setLayoutParams(new RelativeLayout.LayoutParams(100, 100));
}
});
我收到此错误。我正在使用关联布局,为什么错误说明了框架布局?
java.lang.ClassCastException: android.widget.RelativeLayout$LayoutParams cannot be cast to android.widget.FrameLayout$LayoutParams