0
左側のedittextの中に小さな円形の進捗ダイアログを実装したいと思っています。 私はあなたの助けが必要なので、アンドロイドに新しいです。Tiny Circular ProgressBarの左側にあるEdittext
左側のedittextの中に小さな円形の進捗ダイアログを実装したいと思っています。 私はあなたの助けが必要なので、アンドロイドに新しいです。Tiny Circular ProgressBarの左側にあるEdittext
RelativeLayout
は、EditText
とProgressBar
で作成できます。進捗状況をレイアウトの左側に置き、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>
、あなたは右のみ、底部または内部のEditTextの上、左に任意の画像を設定することができますが、進行状況ダイアログのためにあなたは、左側に進捗ダイアログで1個のLinearLayoutを取る必要があり、 EditTextを追加します。 –