我有一个问题。我试着解释一下。这是一个xml代码:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true"
android:background="#ffffff"
>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" >
<EditText
android:id="@+id/u_set_pin"
android:layout_width="fill_parent"
android:layout_height="@dimen/u_widget_height"
android:background="@drawable/rounded_corners"
android:textColor="#4c4c4c"
android:layout_marginBottom="20dp"
android:textSize="@dimen/u_common_text_size"
android:layout_marginTop="@dimen/u_done_margin_buttomt"
/>
</RelativeLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="30dp">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/logo_red"
android:id="@+id/button4"
/>
</RelativeLayout>
</RelativeLayout>
我有一个非常简单的view.image在顶部位置和Edittext在底部位置在scrollview.everythink是完美的但我有问题一些divises。 当我运行我的程序一些divices我的图像已经消失(在屏幕上移动)和一些divises图像大小已经改变(我不想改变大小) 我搜索了我的问题,我发现了这个
<activity
android:name=".activities.CheckPinCodeActivity"
android:screenOrientation="sensorPortrait"
android:theme="@style/NoTitleBar"
android:windowSoftInputMode="adjustResize"
>
</activity>
我在我的活动中使用这个android:windowSoftInputMode但是没有改变 我怎么能解决我的问题?如果有人知道解决方案,请帮助我 谢谢evryone