「Android/UIEditText」の版間の差分
提供: 初心者エンジニアの簡易メモ
行29: | 行29: | ||
// 値設定 | // 値設定 | ||
− | (EditText)findViewById(R.id. | + | ((EditText)findViewById(R.id.ad_unit_id)).setText("hogehoge"); |
</pre> | </pre> |
2019年11月5日 (火) 12:39時点における最新版
res/layout/~.xml
<LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="wrap_content" android:paddingLeft="10dp" android:paddingRight="10dp"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="search:" /> <EditText android:id="@+id/searchBox" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="3dp" android:hint="searchword..." android:singleLine="true" /> </LinearLayout>
java
// 値取得 EditText editText = (EditText)findViewById(R.id.searchBox); Log.d("edittext", editText.getText().toString()); // 値設定 ((EditText)findViewById(R.id.ad_unit_id)).setText("hogehoge");