0

写真でわかるように、私の問題は、下部のナビゲーションバーがキーボードの上にあることです。Mac OSX で Mono for Android (MonoDevelop) を使用して開発しています。

ここに画像の説明を入力

LoginActivity.axml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    style="@style/LoginFormContainer"
    android:orientation="vertical">
<EditText
    android:id="@+id/username"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:hint="@string/prompt_username"
    android:inputType="textEmailAddress"
    android:maxLines="1"
    android:singleLine="true"
    android:layout_marginBottom="14.0dp"
    android:layout_marginTop="54.0dp" />
<EditText
    android:id="@+id/password"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint="@string/prompt_password"
    android:imeActionId="@+id/login"
    android:imeActionLabel="@string/action_sign_in"
    android:imeOptions="actionUnspecified"
    android:inputType="textPassword"
    android:maxLines="1"
    android:singleLine="true" />
<Button
    android:id="@+id/sign_in_button"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="right"
    android:layout_marginTop="16dp"
    android:paddingLeft="32dp"
    android:paddingRight="32dp"
    android:text="@string/action_sign_in"
    android:layout_marginLeft="0.0dp" />
</LinearLayout>

そしてthemes.xml:

<style name="LoginFormContainer">
    <item name="android:layout_width">match_parent</item>
    <item name="android:layout_height">wrap_content</item>
    <item name="android:padding">16dp</item>
</style>

Android 4.0 向けのビルド。Android 4.0 エミュレーターでのテスト (Mono for Android を評価しているため)。エミュレーターには、「ハードウェア ホーム/戻るキー」プロパティが「いいえ」に設定されています。

4

0 に答える 0