1

ヘッダーとリストの一部を含むレイアウトがあります。

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/bisque">
    <LinearLayout 
        xmlns:treeView="http://schemas.android.com/apk/res/com.spot.p2a"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_toLeftOf="@+id/backArrow"
        android:orientation="vertical" 
        android:weightSum="100"
        android:background="@color/antiquewhite">

        <LinearLayout
            android:id="@+id/email_listview_top"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="20"
            android:orientation="vertical"
            android:background="@color/bisque" >

            <TextView
                android:id="@+id/email_listview_header"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/pdf_mail_versand_text"
                android:textColor="@color/black"
                android:layout_marginTop="30dp"
                android:layout_marginLeft="20dp"
                android:textStyle="bold"
                android:textSize="24dp" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_marginTop="20dp"
                android:orientation="vertical" 
                android:background="@color/antiquewhiter">
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="5dp"
                android:orientation="vertical" 
                android:background="@color/antiquewhite">
            </LinearLayout>
                <TextView
                    android:id="@+id/headList"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/datenblätter_text"
                    android:textColor="@color/black"
                    android:layout_marginLeft="20dp"
                    android:layout_marginTop="20dp"
                    android:textStyle="bold"
                    android:textSize="14dp" />

            </LinearLayout>

        </LinearLayout>

         <pl.polidea.treeview.TreeViewList 
            android:id="@+id/tree" 
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="80"
            android:background="@color/antiquewhiter" 
            treeView:indicator_gravity="right|center_vertical"
            android:scrollbars="vertical" 
            android:smoothScrollbar="true"/>


    <!--     <ListView  -->
    <!--         android:id="@android:id/list" -->
    <!--         android:layout_width="match_parent" -->
    <!--         android:layout_height="0dp" -->
    <!--         android:layout_weight="80"  -->
    <!--         android:fadingEdge="none" -->
    <!--         android:background="@color/antiquewhiter" -->
    <!--         android:divider="@color/bisque" -->
    <!--         android:dividerHeight="2dp" -->
    <!--         android:visibility="gone" -->
    <!--         > -->
    <!--     </ListView> -->

    </LinearLayout>
    <ImageView
        android:id="@+id/backArrow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:visibility="gone"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:src="@drawable/back_android" />
</RelativeLayout>

電話でキーボードを表示すると、この部分:

<LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_marginTop="20dp"
                    android:orientation="vertical" 
                    android:background="@color/antiquewhiter">
                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="5dp"
                    android:orientation="vertical" 
                    android:background="@color/antiquewhite">
                </LinearLayout>
                    <TextView
                        android:id="@+id/headList"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="@string/datenblätter_text"
                        android:textColor="@color/black"
                        android:layout_marginLeft="20dp"
                        android:layout_marginTop="20dp"
                        android:textStyle="bold"
                        android:textSize="14dp" />

                </LinearLayout>

            </LinearLayout>

消えます。どうしてか分かりません。キーボードを非表示にすると、この部分が再び表示されます。誰かがその問題を抱えている場合は、キーボードが画面に表示されているときに一部のパーツが非表示になる理由を説明してください。

4

2 に答える 2

4

「AndroidManifest」ファイル内のアクティビティでこれを試してください。

<activity android:windowSoftInputMode="adjustResize|adjustPan">

詳しくはこちらをご覧ください:-

https://developer.android.com/guide/topics/manifest/activity-element.html#wsoft

于 2012-10-04T07:10:31.007 に答える
1

AndroidのwindowSoftInputModeについて読む

したがって、次のステートメントでモードを「サイズ変更」に変更して、「AndroidManifest」でのアクティビティに変更できます。

<activity android:name=".YourActivity"
            android:windowSoftInputMode="adjustResize">
于 2012-10-04T06:35:12.267 に答える