我已经找到了关于这个问题的类似问题,因为我是初学者,我无法弄清楚为什么没有一个解决方案适合我。我有一个TabLayout,每个标签都有一个片段。在一个片段中,我在布局的中间有一个EditText,每当我尝试在EditText中编写时,键盘都会隐藏EditText的一半。许多人建议在清单文件中添加android:windowSoftInputMode="adjustPan|adjustResize"
,但它不起作用,因为EditText在片段内,而不是活动(我猜)。我还把它添加到了标签片段的母活动中的清单文件中,没有用。任何人都可以建议我如何处理这个?这是我的片段布局代码:
<FrameLayout 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"
android:background="@drawable/background"
android:paddingTop="15dp"
tools:context="com.example.lenovo.memcreator.fragments.CreateMemoryFragment">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:orientation="vertical"
tools:ignore="UselessParent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:gravity="center"
android:text="@string/create_a_new_memory"
android:textSize="20sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="40dp"
android:orientation="horizontal"
android:weightSum="8"
tools:ignore="DisableBaselineAlignment">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"
android:text="@string/memory_name"
android:textSize="17sp" />
<EditText
android:id="@+id/memory_name"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_marginLeft="15dp"
android:layout_weight="5"
android:background="@drawable/edit_text_border"
android:gravity="top"
android:inputType="textMultiLine"
android:padding="5dp"
android:scrollbars="vertical"
android:textColor="#c2000000"
android:textCursorDrawable="@null"
android:textSize="16sp"
tools:ignore="RtlHardcoded" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="220dp"
android:layout_marginTop="20dp"
android:orientation="horizontal"
android:weightSum="8"
tools:ignore="DisableBaselineAlignment">
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginTop="5dp"
android:layout_weight="3"
android:orientation="vertical"
android:weightSum="10">
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="6"
android:contentDescription=""
android:scaleType="centerCrop"
android:src="@drawable/no_image"
tools:ignore="ContentDescription,NestedWeights" />
<Button
android:id="@+id/btn_add_image"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"
android:text="@string/browse"
android:textAllCaps="false" />
<Button
android:id="@+id/btn_capture_image"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"
android:text="@string/capture"
android:textAllCaps="false" />
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="220dp"
android:layout_marginLeft="15dp"
android:layout_weight="5"
android:orientation="vertical"
tools:ignore="RtlHardcoded">
<TextView
android:layout_width="wrap_content"
android:layout_height="35dp"
android:text="@string/post_mem"
android:textSize="17sp" />
<EditText
android:id="@+id/memory_text"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:background="@drawable/edit_text_border"
android:gravity="top"
android:inputType="textMultiLine"
android:minLines="6"
android:padding="5dp"
android:scrollbars="vertical"
android:textColor="#c2000000"
android:textCursorDrawable="@null"
android:textSize="16sp" />
</LinearLayout>
</LinearLayout>
<Button
android:id="@+id/btn_create_memory"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:background="@color/colorPrimary"
android:text="@string/create_memory"
android:textAllCaps="false"
android:textColor="#ffffff" />
</LinearLayout>
</FrameLayout>
此处,在输入之前它的外观如何:http://imgur.com/a/IXT7V 在输入时:http://imgur.com/a/qvHEm
感谢任何形式的帮助。
答案 0 :(得分:0)
仅将其放入window.onload; window.beforeonload
文件&#39;活动&#39;
Manifest
答案 1 :(得分:0)
将相同的代码与ScrollView
:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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"
android:background="@drawable/background"
android:paddingTop="15dp"
tools:context="com.example.lenovo.memcreator.fragments.CreateMemoryFragment">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:orientation="vertical"
tools:ignore="UselessParent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:gravity="center"
android:text="@string/create_a_new_memory"
android:textSize="20sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="40dp"
android:orientation="horizontal"
android:weightSum="8"
tools:ignore="DisableBaselineAlignment">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"
android:text="@string/memory_name"
android:textSize="17sp" />
<EditText
android:id="@+id/memory_name"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_marginLeft="15dp"
android:layout_weight="5"
android:background="@drawable/edit_text_border"
android:gravity="top"
android:inputType="textMultiLine"
android:padding="5dp"
android:scrollbars="vertical"
android:textColor="#c2000000"
android:textCursorDrawable="@null"
android:textSize="16sp"
tools:ignore="RtlHardcoded" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="220dp"
android:layout_marginTop="20dp"
android:orientation="horizontal"
android:weightSum="8"
tools:ignore="DisableBaselineAlignment">
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginTop="5dp"
android:layout_weight="3"
android:orientation="vertical"
android:weightSum="10">
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="6"
android:contentDescription=""
android:scaleType="centerCrop"
android:src="@drawable/no_image"
tools:ignore="ContentDescription,NestedWeights" />
<Button
android:id="@+id/btn_add_image"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"
android:text="@string/browse"
android:textAllCaps="false" />
<Button
android:id="@+id/btn_capture_image"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"
android:text="@string/capture"
android:textAllCaps="false" />
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="220dp"
android:layout_marginLeft="15dp"
android:layout_weight="5"
android:orientation="vertical"
tools:ignore="RtlHardcoded">
<TextView
android:layout_width="wrap_content"
android:layout_height="35dp"
android:text="@string/post_mem"
android:textSize="17sp" />
<EditText
android:id="@+id/memory_text"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:background="@drawable/edit_text_border"
android:gravity="top"
android:inputType="textMultiLine"
android:minLines="6"
android:padding="5dp"
android:scrollbars="vertical"
android:textColor="#c2000000"
android:textCursorDrawable="@null"
android:textSize="16sp" />
</LinearLayout>
</LinearLayout>
<Button
android:id="@+id/btn_create_memory"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:background="@color/colorPrimary"
android:text="@string/create_memory"
android:textAllCaps="false"
android:textColor="#ffffff" />
</LinearLayout>
</ScrollView>