2

多くのビューを持つレイアウトがあり、そのうちの 1 つは背景画像付きの編集テキストです。数行になるまではすべて問題ありませんが、入力されたテキストの行が増えると、編集テキストが展開され始め、予期しない他のビューが下に押し出されます。

幅をラップコンテンツにしました。以下のレイアウトコードを見つけてください

<FrameLayout
    android:id="@+id/ll"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center" >

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="10dp"
        android:src="@drawable/dsh" />

    <EditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:background="@android:color/transparent"
        android:maxHeight="250dp"
        android:scrollbars="vertical"
        android:singleLine="false" />
4

0 に答える 0