0

私はこのレイアウトを持っています:

<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".ReceitaOnlineUI" 
android:background="@color/color1">

    <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content">

            <Spinner
                android:id="@+id/spinner_busca_receita_online"
                android:layout_width="212dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:entries="@array/opcao_busca_receita" />

            <Button
                android:id="@+id/btnTeste"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="Button" />
        </LinearLayout>

        <FrameLayout
            android:id="@+id/myfirstfragment"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >
        </FrameLayout>

    </LinearLayout>

</RelativeLayout>

FrameLayout 内でこれを開きます。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/searchbyname_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<EditText
    android:id="@+id/txtSearchByName"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:ems="10"
    android:hint="@string/dica_search_by_name" >

</EditText>

<Button
    android:id="@+id/btnFindOnLine"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Button" />

</LinearLayout>

FragmentActivity の OnCreate でフラグメントを開く方法は次のとおりです。

getSupportFragmentManager().beginTransaction().add(R.id.myfirstfragment, myFragment, FRAGMENT_TAG_STRING)
.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_FADE)
.commit();

EditText をクリックしても、キーボードが表示されません。Androidのバーでは、キーボードのアイコンがあるため、開いていることがわかります...しかし、画面には表示されません...

誰かが私が何をする必要があるか知っていますか?

編集: キーボード ショーに、EditText がフォーカスを失う必要があるようです...

4

0 に答える 0