「Android/UIEditText」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「<pre> <LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="wrap_content" android:...」) |
|||
行1: | 行1: | ||
+ | res/layout/~.xml | ||
<pre> | <pre> | ||
− | + | <LinearLayout | |
android:orientation="horizontal" | android:orientation="horizontal" | ||
android:layout_width="match_parent" | android:layout_width="match_parent" | ||
行19: | 行20: | ||
android:singleLine="true" | android:singleLine="true" | ||
/> | /> | ||
− | + | </LinearLayout> | |
+ | </pre> | ||
+ | java | ||
+ | <pre> | ||
+ | EditText editText = (EditText)findViewById(R.id.searchBox); | ||
+ | Log.d("edittext", T.getText().toString()); | ||
</pre> | </pre> |
2019年8月28日 (水) 16:44時点における版
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", T.getText().toString());