-1

これは、私が達成しようとしているものに似たものです (画像を参照)。削除ボタン(右側)が機能しているので、ボタンを追加する方法を知っています。しかし、どうすればテキストをシフトして左側のボタンのためのスペースを空けることができるでしょうか?

ここに画像の説明を入力

4

1 に答える 1

1

このようなことができます

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dp"
        android:gravity="center_vertical" >

        <EditText
            android:id="@+id/editText"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:paddingLeft="30dp"
            android:paddingRight="30dp" />

        <ImageView
            android:id="@+id/leftImageView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_marginLeft="5dp"
            android:src="@drawable/ic_launcher" />

        <ImageView
            android:id="@+id/rightImageView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_marginRight="5dp"
            android:src="@drawable/ic_launcher" />
    </RelativeLayout>

</RelativeLayout>

ImageViews の代わりに、Buttons またはその他のビューを使用できます。また、必要に応じてマージンとパディングを調整します。

于 2013-02-06T03:42:13.903 に答える