android - 如何在聚焦时将EditText转移到顶部?

时间:2017-03-27 18:24:55

标签: java android xml android-layout android-studio-2.2

我有一个视图,其中包含一个顶部的ImageView和一个带有按钮的EditText。 当键盘出现时,如何将ImageView移出屏幕,以显示EditText和Button?

这是我的layout.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#fff"
    tools:context="com.archimedia.appToYours.MainActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        tools:ignore="UselessParent">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:weightSum="1">


            <!-- this is what I want to shift up out of the screen -->
            <ImageView
                android:id="@+id/upToYoursImageView"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="16dp"
                android:contentDescription=""
                app:srcCompat="@drawable/_title"/>

            <EditText
                android:id="@+id/code"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@drawable/targa"
                android:ems="15"
                android:fontFamily="sans-serif-condensed"
                android:hint="Some text..."
                android:inputType="textCapCharacters"
                android:maxLength="15"
                android:paddingLeft="60dp"
                android:textColor="#222"
                android:textColorHint="#222"
                android:textColorLink="@android:color/holo_blue_bright"
                android:textColorSecondary="#222"
                android:textCursorDrawable="@drawable/cursor"
                android:textSize="40sp"
                android:textStyle="bold"
                tools:ignore="HardcodedText,RtlHardcoded,RtlSymmetry" />

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="130dp"
                android:layout_marginBottom="50dp"
                android:layout_weight="0.50"
                tools:ignore="InefficientWeight">

                <Button
                    android:id="@+id/send_button"
                    style="@style/Widget.AppCompat.Button.Colored"
                    android:layout_width="170dp"
                    android:layout_height="170dp"
                    android:layout_alignParentTop="true"
                    android:layout_centerHorizontal="true"
                    android:background="@drawable/rounded_button"
                    android:foregroundGravity="center_vertical|center_horizontal"
                    android:text="Go!"
                   android:textAppearance="@style/TextAppearance.AppCompat.Display3"
                    android:textSize="38sp"
                    tools:ignore="HardcodedText" />
            </RelativeLayout>
          </LinearLayout>
       </LinearLayout>
    </RelativeLayout>

2 个答案:

答案 0 :(得分:0)

我认为您可以添加ScrollView 尝试这个代码,我希望它有所帮助

&#13;
&#13;
{{1}}
&#13;
&#13;
&#13;

答案 1 :(得分:0)

我有类似的要求。我解决它的方法是在根视图上收听 LayoutChanged 事件。一旦我看到视图的高度变小,我就认为键盘打开并做出相应的反应。 这是该方法的一个示例。希望它有所帮助:

<强> MainActivity.java

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    findViewById(R.id.activity_main).addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
        @Override
        public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) {
            if (bottom < oldBottom) {
                // View got smaller in height
                // In this case this means that the keyboard was opened
                findViewById(R.id.upToYoursImageView).setVisibility(View.GONE);
            } else {
                // View got larger in height
                findViewById(R.id.upToYoursImageView).setVisibility(View.VISIBLE);
            }
        }
    });
}

}

<强>的AndroidManifest.xml

<activity android:name=".MainActivity"
        android:windowSoftInputMode="adjustResize"/>