【Android】 エディットテキストを使用する

2013年8月18日日曜日

Android Java UI

t f B! P L
Androidでエディットテキスト(EditText)を使用する方法です。
android.widget.EditText を使用します。

EditTextを使ったサンプル

■ソースコード

protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.edittext);
}

■レイアウト

<FrameLayout 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:background="#ffffff"
    android:padding="0dp" >

    <EditText
        android:id="@+id/sample_edittext"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</FrameLayout>

Translate

このブログを検索

フォロワー

QooQ