EditText のテキストの上部が切り取られている RelativeLayout に EditText があります。EditText のパディングを増やしてみましたが、20 dp でもテキストが切り取られます。
ここに画像を投稿しようとしましたが、投稿できるほどのスタックオーバーフローの評判がないようです。小学校のように、真ん中に水平に点線が引かれた罫線入りの紙を想像してみてください。点線より上のテキストは切り取られます。
これが私のlayout.xmlです:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView android:id="@+id/questionTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="0dp"
android:layout_marginLeft="10dp"
android:textSize="16dp"
android:text="Audit Question"/>
<RadioButton android:id="@+id/answerRadioButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/questionTextView"
android:layout_alignLeft="@id/questionTextView"
android:layout_marginTop="5dp"
android:checked="true"
android:textSize="16dp"
android:text="audit answer"/>
<EditText android:id="@+id/commentEditText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/answerRadioButton"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginBottom="10dp"
android:padding="20dp" />
</RelativeLayout>
どんな助けでも大歓迎です。