自动生成edittext以下键盘上方的按钮

时间:2013-09-19 12:46:43

标签: android android-layout

Android的另一个相同问题是驱动开发人员疯狂! 我想在键盘上面制作按钮......

这是我的xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/home"
    android:layout_width="910dp"
    android:layout_height="wrap_content"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:keepScreenOn="true"
    android:orientation="vertical"
    android:padding="15dip" >

    <com.custom.webview
        android:id="@+id/webView1"
        android:layout_width="900dp"
        android:layout_height="350dp"
        android:visibility="gone" >
    </com.custom.webview>

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:fontFamily="sans-serif-light"
        android:paddingBottom="5dip"
        android:paddingTop="20dip"
        android:text="@string/choose_the_outcome"
        android:textAllCaps="true"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textSize="25sp" />

    <Spinner
        android:id="@+id/spinner1"
        android:layout_width="match_parent"
        android:layout_height="0dip"
        android:layout_weight="1"
        android:entries="@array/call_outcomes" />

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:fontFamily="sans-serif-light"
        android:paddingBottom="5dip"
        android:paddingTop="20dip"
        android:text="@string/notes"
        android:textAllCaps="true"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textSize="25sp" />

    <EditText
        android:id="@+id/editText1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:fontFamily="sans-serif-light"
        android:inputType="textMultiLine" >

    </EditText>

    <LinearLayout
        style="?android:attr/buttonBarStyle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="25dip" >

        <Button
            android:id="@+id/button1"
            style="?android:attr/buttonBarButtonStyle"
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="0.5"
            android:onClick="onCancel"
            android:text="@android:string/cancel" />

        <Button
            android:id="@+id/button2"
            style="?android:attr/buttonBarButtonStyle"
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="0.5"
            android:onClick="onSave"
            android:text="@string/save" />
    </LinearLayout>

</LinearLayout>

3 个答案:

答案 0 :(得分:1)

只需移动所有的layoouts,就像它们在RelativeLayout中一样。它可能会解决问题。

答案 1 :(得分:1)

添加此行

android:windowSoftInputMode="adjustResize|stateHidden"

到AndroidManifest.xml <activity>标记

答案 2 :(得分:1)

您需要执行以下操作: 只需将文本视图设为微调器的子项 或者放置文本视图height = wrap_content。