2017-03-03 13 views
0

左側のedittextの中に小さな円形の進捗ダイアログを実装したいと思っています。 私はあなたの助けが必要なので、アンドロイドに新しいです。Tiny Circular ProgressBarの左側にあるEdittext

+0

、あなたは右のみ、底部または内部のEditTextの上、左に任意の画像を設定することができますが、進行状況ダイアログのためにあなたは、左側に進捗ダイアログで1個のLinearLayoutを取る必要があり、 EditTextを追加します。 –

答えて

0

RelativeLayoutは、EditTextProgressBarで作成できます。進捗状況をレイアウトの左側に置き、EditTextの中にテキストのためにいくつかのパディングを残します。

例:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    > 
    <EditText 
     android:id="@+id/editText" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:paddingLeft="50dp" 
     android:text="I'm EditText" 
     /> 
    <ProgressBar 
     android:layout_width="50dp" 
     android:layout_height="wrap_content" 
     android:layout_alignBottom="@+id/editText" 
     android:layout_alignParentStart="true" 
     android:paddingBottom="8dp" 
     /> 
</RelativeLayout> 

enter image description here

関連する問題