Android中的透明状态栏导致EditText被键盘隐藏

时间:2015-08-06 23:50:20

标签: android textview toolbar statusbar

我按照Google的材料设计指南制作了Android应用程序。 所以,我已经实现了最新的支持库(我的最小Sdk值为14)

现在,我遇到了一个问题:我使用自定义ToolBar(在XML文件中定义)使状态栏变得透明。除了FloatingActionButton(来自https://github.com/makovkastar/FloatingActionButton)跳过XML定义的布局边距之外,一切都运行良好。同上,我的应用程序用户界面之一使用TextView登录用户:一旦聚焦,他们就会被软键盘隐藏。

将这两个问题替换为" AppCompat.DarkActionBar"到" AppCompat.NoActionBar" (以及项目" android:windowTranslucentStatus"设置为" true")。

我尝试在我的清单中使用windowSoftInputMode" adjustPan | adjustResize",但没有任何改变。添加" ScrollView"使用" EditText"进行布局里面也没有解决我的问题。

我的英语很糟糕,我知道图片比文字好,所以这就是我想要做的以及发生了什么:

(链接到图片)http://i.stack.imgur.com/fIRCl.png

有什么想法吗?谢谢你的阅读!

  

编辑:我用FloatingButton解决了我的问题,只需要将这一行添加到组件的XML声明中:   android:layout_alignParentBottom="true"

现在唯一的问题是隐藏EditText的键盘。 这是我的代码:

activity_main.xml中

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:elevation="7dp"
    tools:context=".MainActivity">

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

        <!-- My toolbar -->
        <include
            android:id="@+id/tool_bar"
            layout="@layout/toolbar_design">
        </include>

        <!-- Fragment's place -->
        <FrameLayout
            android:id="@+id/frame_container"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:clickable="true">
        </FrameLayout> <!-- Open drawer bug fix -->

    </LinearLayout>

    <!-- Sliding Drawer -->
    <ListView
        android:id="@+id/list_slidermenu"
        android:layout_width="300dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:choiceMode="singleChoice"
        android:divider="@null"
        android:clipToPadding="false"
        android:overScrollFooter="@android:color/transparent"
        android:dividerHeight="0dp"
        android:background="@color/drawer_background"/>

</android.support.v4.widget.DrawerLayout>

toolbar.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/md_blue_800"
    android:theme="@style/ThemeOverlay.AppCompat.Dark"
    android:elevation="4dp" >
</android.support.v7.widget.Toolbar>

fragment_profile.xml (带有EditText&#39; s的视图)

<LinearLayout 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:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:background="@drawable/container_dropshadow">

        <!-- Top fragment's Image --> 
        <ImageView
            android:layout_width="match_parent"
            android:layout_height="150dp"
            android:scaleType="centerCrop"
            android:src="@drawable/top_image"/>

    </LinearLayout>

    <!-- Scrollview in case of screen's height is too small -->
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:paddingLeft="@dimen/activity_horizontal_margin"
            android:paddingRight="@dimen/activity_horizontal_margin"
            android:paddingTop="@dimen/activity_vertical_margin"
            android:paddingBottom="@dimen/activity_vertical_margin"
            android:id="@+id/rlFillProfile">

            <!-- long long text ( 9 lines ) -->
            <TextView
                android:text="@string/text_edit_profile" 
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginBottom="@dimen/activity_vertical_margin"
                android:id="@+id/tvEditProfile" />

            <!-- User ID EditText -->
            <com.rengwuxian.materialedittext.MaterialEditText
                android:layout_below="@id/tvEditProfile"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="12dp"
                android:maxLines="1"
                android:singleLine="true"
                android:maxEms="10"
                android:hint="Your user ID"
                android:layout_marginRight="@dimen/activity_horizontal_margin"
                android:id="@+id/etUserID"
                android:layout_alignLeft="@+id/etUserPassword"
                android:layout_alignStart="@+id/etUserPassword" />

            <!-- User ID TextView -->
            <TextView
                android:id="@+id/tvUserID"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Identifiant :"
                android:textSize="18dp"
                android:layout_marginBottom="16dp"
                android:layout_alignBottom="@id/etUserID"
                android:layout_alignRight="@+id/tvUserPassword"
                android:layout_alignEnd="@+id/tvUserPassword" />

            <!-- User password TextView -->
            <com.rengwuxian.materialedittext.MaterialEditText
                android:layout_below="@id/etUserID"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="12dp"
                android:maxLines="1"
                android:singleLine="true"
                android:maxEms="10"
                android:layout_marginRight="@dimen/activity_horizontal_margin"
                android:inputType="textPassword"
                android:id="@+id/etUserPassword"
                android:hint="******"
                android:layout_toRightOf="@+id/tvUserPassword"
                android:layout_toEndOf="@+id/tvUserPassword" />

            <!-- User password TextView -->
            <TextView
                android:id="@+id/tvUserPassword"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Mot de passe :"
                android:textSize="18dp"
                android:layout_alignBottom="@+id/etUserPassword"
                android:layout_marginRight="16dp"
                android:layout_marginBottom="16dp"
                android:layout_alignParentLeft="true"
                android:layout_alignParentStart="true" />

            <!-- Button to get user's touch event -->
            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="16dp"
                android:text="Continuer"
                android:id="@+id/button_disconnect"
                android:layout_below="@id/etUserPassword"
                android:layout_centerHorizontal="true" />

        </RelativeLayout>
    </ScrollView>
</LinearLayout>

的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" ... >

    <!-- Permissions -->
    ...

    <application
        ... >

        <activity
            android:name="..."
            android:label="@string/app_name"
            android:screenOrientation="portrait"
            android:configChanges="orientation|keyboardHidden"
            android:windowSoftInputMode="adjustResize|stateHidden">

            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

在我的MainActivity中,我有DrawerLayout和一些与工具栏/布局无关的代码行,除了:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    ...

    toolbar = (Toolbar) findViewById(R.id.tool_bar);
    toolbar.setPadding(0, getStatusBarHeight(), 0, 0);
    setSupportActionBar(toolbar);

    // enabling action bar app icon and behaving it as toggle button
    getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    getSupportActionBar().setHomeButtonEnabled(true);
    getSupportActionBar().setIcon(new ColorDrawable(getResources().getColor(android.R.color.transparent)));

    ...
}


// A method to find height of the status bar
// Source : an Stackoverflow's answer
public int getStatusBarHeight() {
    int result = 0;
    int resourceId = getResources().getIdentifier("status_bar_height", "dimen", "android");
    if (resourceId > 0) {
        result = getResources().getDimensionPixelSize(resourceId);
    }
    return result;
}

1 个答案:

答案 0 :(得分:2)

好的,终于找到了解决方案。在Fragment中使用此代码可以解决所有问题。

getActivity().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN | WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);

顺便说一下,使用AppCompatActivity而不是ActionBarActivity(支持V7),我不确定它会改变什么,但以防万一...

(来自:此回答https://stackoverflow.com/a/28012530/5200029