在按钮前按Tab时显示键盘蜂鸣声

时间:2019-01-24 16:23:06

标签: android-studio

我是Android Studio的新手,我正在尝试构建一个简单的应用程序,当我单击按钮时,它会进行一些计算。问题是,当我在按钮前的最后一个$25上按下Tab键时,该按钮变成了焦点并显示了一个键盘,我只希望按钮保持不焦点,因此当用户输入所有必要数据时,他可以点击EditText

我尝试将属性buttonfocusable设置为false,但是它们似乎都不起作用,我还没有找到其他对我有意义的选项。

我该怎么做才能阻止这种行为?

编辑: 清单文件:

focusableInTouchMode

编辑2: XML布局:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.example.rodolfo.trekking">

    <application
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:roundIcon="@mipmap/ic_launcher_round"
            android:supportsRtl="true"
            android:windowSoftInputMode="stateHidden"
            android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>

                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
    </application>

</manifest>

t>

1 个答案:

答案 0 :(得分:0)

在清单文件中设置

android:windowSoftInputMode="stateHidden"