- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是没有键盘的屏幕:
http://i.stack.imgur.com/YOnMf.png
但是当我点击 EditText 并且键盘弹起时,标题会困惑并消失,因为它也弹起:
http://i.stack.imgur.com/zyJ3j.png
这是代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".SecondActivity"
android:background="@color/white">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="55dp"
android:id="@+id/abs"
android:orientation="horizontal"
android:layout_alignParentTop="true"
android:gravity="center">
<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:id="@+id/btnVoltar"
android:src="@drawable/inochat"
android:layout_marginLeft="3dp"/>
<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:id="@+id/usu"
android:src="@drawable/usuario"
android:layout_alignParentRight="true"
android:background="@drawable/foto"
android:layout_marginRight="2dp"
android:layout_marginTop="3dp"/>
<TextView
android:layout_width="fill_parent"
android:layout_toLeftOf="@+id/addfavorito"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Nome"
android:id="@+id/nomeoutro"
android:layout_centerVertical="true"
android:layout_toRightOf="@+id/btnVoltar"
android:layout_toEndOf="@+id/btnVoltar"
android:textColor="#000000"
android:textSize="15dp"
android:layout_marginLeft="5dp"/>
<ImageView
android:layout_width="match_parent"
android:layout_height="2dp"
android:src="@drawable/traco"
android:layout_alignParentBottom="true"/>
<ImageButton
android:layout_width="40dp"
android:layout_height="40dp"
android:id="@+id/addfavorito"
android:layout_centerVertical="true"
android:layout_toStartOf="@+id/usu"
android:src="@drawable/fav"/>
</RelativeLayout>
<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipe_refresh_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/llMsgCompose"
android:layout_below="@+id/abs">
<ListView
android:isScrollContainer="false"
android:layout_above="@+id/llMsgCompose"
android:id="@+id/txtMensagens"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@null"
android:divider="@null"
android:transcriptMode="alwaysScroll">
</ListView>
</android.support.v4.widget.SwipeRefreshLayout>
<RelativeLayout
android:id="@+id/llMsgCompose"
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@color/white"
android:layout_alignParentBottom="true"
android:layout_marginBottom="1dp"
android:gravity="center">
<EditText
android:id="@+id/txtMensagem"
android:layout_width="50dp"
android:layout_height="fill_parent"
android:background="@color/bg_msg_input"
android:textColor="@color/text_msg_input"
android:paddingLeft="6dp"
android:paddingRight="6dp"
android:inputType="text"
android:layout_alignParentRight="true"
android:layout_toRightOf="@+id/icone"/>
<ImageView
android:layout_width="40dp"
android:layout_height="40dp"
android:id="@+id/icone"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:background="@color/bg_msg_input"
android:src="@drawable/msg"/>
</RelativeLayout>
</RelativeLayout>
最佳答案
尝试在 list 中为此 Activity 添加以下内容:
android:windowSoftInputMode="adjustPan"
android:windowSoftInputMode="adjustPan" 和 android:windowSoftInputMode="adjustResize" 的区别:
“调整调整大小”
Activity 的窗口会调整大小以便为屏幕上的软键盘腾出空间。
“调整平移”
Activity 窗口的内容会自动平移,因此当前焦点永远不会被键盘挡住。这样用户就可以看到他们正在输入的内容。这通常不如调整大小可取,因为用户可能需要关闭软键盘才能到达窗口的遮挡部分并与之交互。
另请参阅此博客,
http://android-developers.blogspot.com/2009/04/updating-applications-for-on-screen.html
有点像,
<activity
android:label="@string/app_name"
android:name=".MainActivity" android:windowSoftInputMode="adjustNothing">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
关于android - 键盘弹起时如何调整 ListView 的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32912874/
当内容大小小于 View 框架并且拖动它时,如何简单地让 ScrollView 弹起? 例如 iPhone 的应用搜索结果。 最佳答案 参见UIScrollView (paging mode) bou
我通过以下方式使用悬停: $('.item a').hover(function () { $('#overlay').slideDown(); }, function
我是一名优秀的程序员,十分优秀!