私は単純なメモ帳を作成しようとしてきましたが、EditText
そのような親と一致するxmlファイルを作成できません:
XMLで:
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:ems="10" >
<requestFocus />
</EditText>
</TableLayout>
フルスクリーンを editText と一致する親にしたい。
こんな感じじゃない……左揃えで入力されるテキストが欲しい
助けてください!!:)