我对这种布局有疑问:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/my_root4"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black"
tools:context=".Viewer4Activity" >
<com.my.mypager
android:id="@+id/myPager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:isScrollContainer="false" >
</com.my.mypager>
<com.my.mypanel
android:id="@+id/myPanelResults"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:orientation="vertical"
android:visibility="gone" >
<GridView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/myResults"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="right"
android:isScrollContainer="true"
android:numColumns="2"
android:stretchMode="columnWidth" >
</GridView>
</com.my.mypanel>
</RelativeLayout>
当活动开始时,myPager
以全屏模式显示图像并myPanel
隐藏 ( visibility="gone"
)。
此时我显示软键盘,myPager
容器中的图像是维度;我已经设置android:isScrollContainer="false"
当我myPanel
通过代码将可见性设置为可见时,面板的大小正确,不会在键盘上重叠,但图像也会调整大小。如何使图像保持其大小?
有什么建议吗?谢谢