Android EditTextの入力タイプをプログラムで設定するにはどうすればよいですか?
この例は、AndroidEditTextの入力タイプをプログラムで設定する方法を示しています。
ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。
ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="https://schemas.android.com/apk/res/android" xmlns:tools="https://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:gravity="center_horizontal" android:layout_marginTop="30dp" android:padding="4dp" tools:context=".MainActivity"> <EditText android:id="@+id/editText" android:layout_width="match_parent" android:layout_height="wrap_content"/> <Button android:onClick="SetInputTypeNumber" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Click Here to set EditText input type to number" /> </LinearLayout>
ステップ3 −次のコードをsrc / MainActivity.java
に追加しますimport androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.text.InputType; import android.view.View; import android.widget.EditText; public class MainActivity extends AppCompatActivity { EditText editText; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); editText = findViewById(R.id.editText); } public void SetInputTypeNumber(View view) { editText.setInputType(InputType.TYPE_CLASS_NUMBER); } }
ステップ4 −次のコードをandroidManifest.xmlに追加します
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="https://schemas.android.com/apk/res/android" package="app.com.sample"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" 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>
-
AndroidでAsyncTaskのタイムアウトを設定するにはどうすればよいですか?
この例は、AndroidでAsyncTaskのタイムアウトを設定する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="htt
-
Outlook for Android アプリでメールを設定する方法
Outlook は、何十年にもわたって最も人気のあるメール管理ソリューションの 1 つであり、世界中の複数の個人や企業によって使用されています。コンピューターで電子メールにアクセスするために使用する主要なツールかもしれませんが、スマートフォンについて話すときは確かに同じではありません.しかし、Android スマートフォンで Outlook を構成するのは非常に簡単で、数分で完了します。どのクライアントよりも優れた方法で電子メールを整理するだけでなく、スパマーや犯罪者があなたに到達するのを困難にします.したがって、読者がAndroidでOutlookをセットアップする方法を学ぶことは価値があり