58

ImageView の上に Edittext フィールドを持つビューがあります。キーボードが表示されたら、ウィンドウのサイズを変更して、EditText がキーボードによって隠されないようにします。AndroidManifest ファイルで宣言android:windowSoftInputMode="adjustResize"し、画面のサイズを変更しましたが、問題は ImageView のサイズを変更しないことです。ImageView を影響を受けないようにするにはどうすればよいですか?

ImageView だけで追加のレイアウトを膨らませることはできますか、それともサイズ変更が影響しますか? ここに画像の説明を入力

4

8 に答える 8

95

完全なソリューションには、いくつかの重要なポイントが含まれます

  • を使用RelativeLayoutして、Views互いにオーバーラップするように設定できます
  • を使用EditTextの底に合わせますWindowsandroid:layout_alignParentBottom="true"
  • android:windowSoftInputMode="adjustResize"マニフェストで使用してWindow、キーボードがポップアップしたときに下部が変更されるようにします(前述のとおり)
  • が よりも大きくなるようImageViewに a を内側に置き、を使用してスクロールを無効にします。ScrollViewImageViewWindowScrollViewScrollView#setEnabled(false)

レイアウトファイルはこちら

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.so3.MainActivity">
    <ScrollView
        android:id="@+id/scroll"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        <ImageView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:adjustViewBounds="true"
            android:src="@drawable/stickfigures"/>
    </ScrollView>
    <EditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:background="@android:color/holo_blue_bright"
        android:text="Please enter text"
        android:textSize="40sp"
        android:gravity="center_horizontal"/>
</RelativeLayout>

ここに私の活動があります

package com.so3;

import android.app.Activity;
import android.os.Bundle;
import android.widget.ScrollView;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ScrollView sv = (ScrollView)findViewById(R.id.scroll);
        sv.setEnabled(false);
    }
}

私の AndroidManifest

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"    package="com.so3" >
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.so3.MainActivity"
            android:windowSoftInputMode="adjustResize"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

私のソリューションのスクリーンショット

スクリーンショット 1 スクリーンショット 2

于 2014-01-18T10:00:37.450 に答える
1
final View activityRootView = findViewById(R.id.mainScroll);

activityRootView.getViewTreeObserver().addOnGlobalLayoutListener(
        new OnGlobalLayoutListener() {

            @Override
            public void onGlobalLayout() {
                int heightView = activityRootView.getHeight();
                int widthView = activityRootView.getWidth();
                if (1.0 * widthView / heightView > 1) {

                    Log.d("keyboarddddd      visible", "no");
                    relativeLayoutForImage.setVisibility(View.GONE);
                    relativeLayoutStatic.setVisibility(View.GONE);
                    //Make changes for Keyboard not visible


                } else {

                    Log.d("keyboarddddd      visible ", "yes");

                    relativeLayoutForImage.setVisibility(View.VISIBLE);
                    relativeLayoutStatic.setVisibility(View.VISIBLE);
                    //Make changes for keyboard visible


                }
            }
        });
于 2014-03-28T12:46:20.587 に答える
0

私にとって、キーボードの高さが特定の測定値であると想定したくありませんでした。心配しているビューが何であれ、 onTouchListener を作成してから、次のようにします。

    setOnTouchListener(new OnTouchListener()  {



        Runnable shifter=new Runnable(){
            public void run(){
                try {
                    int[] loc = new int[2];                 
                    //get the location of someview which gets stored in loc array
                    findViewById(R.id.someview).getLocationInWindow(loc);
                    //shift so user can see someview
                    myscrollView.scrollTo(loc[0], loc[1]);   
                }
                catch (Exception e) {
                    e.printStackTrace();
                }   
            }}
        };

        Rect scrollBounds = new Rect();
        View divider=findViewById(R.id.someview);
        myscollView.getHitRect(scrollBounds);
        if (!divider.getLocalVisibleRect(scrollBounds))  {
            // the divider view is NOT  within the visible scroll window thus we need to scroll a bit.
            myscollView.postDelayed(shifter, 500);
        }



    });

//基本的に、画面に表示したいビューの新しい場所にスクロールするランナブルを作成します。スクロールビューの境界内にない(画面上にない)場合にのみ、そのランナブルを実行します。このようにして、スクロールビューを参照されたビューにシフトします(私の場合、行区切りであった「someview」)。

于 2014-05-15T16:37:26.633 に答える