私はEditTextを持っていて、EditText内に余白を設定したい、編集テキストの内容(テキスト)の余白ではなく、ビューの余白を意味する魔女私はこの属性で解決できる:android:layout_marginLeft
。android内の編集テキスト内の余白
EditText内のテキストの前後にある程度のスペースが必要です。
パディングを設定しようとしましたが動作しません!
これは私のXMLコードです:
<FrameLayout
android:layout_width="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_marginLeft="2dp">
<EditText android:inputType="none"
android:textSize="15sp"
android:id="@+id/editText1"
android:scrollHorizontally="true"
android:layout_height="35dp"
android:padding="3dip"
android:singleLine="true"
android:layout_width="160dp"
android:layout_weight="0" />
<ImageView android:id="@+id/refreshButton"
android:src="@drawable/refresh"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center_vertical|right" />
</FrameLayout>
いずれかがそれを行うために私を助けることができますか?事前
はい、あなたは正しいです、詰め物は解決策でした!ありがとう –
これらの日(2016年)のこの回答には、バックグラウンドdrawableと同じことをすることなく、テキストのパディングを変更するという問題があることを覚えておいてください。背景によっては奇妙に見える可能性があります(例:AppCompatベースのEditTextスタイル) –