让图标挤在我想要的位置时遇到了很多麻烦。我查看了 3 个不同的 Stack Overflow 问题,并尝试将图像放置在 RelativeLayout、LinearLayout 和 TableRow 中。所有这些都有各种 XML 选项。从来没有设法让图标向右移动并在分配空间的顶部和底部之间居中。在下面的图片中,红色是现在的位置,蓝色是我想要的位置。这是一张图片(它现在的样子,这是不正确的)和代码(imageView1 是我想要对齐的):
和代码:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent"
android:id="@+id/loginScrollView">
<TableLayout android:layout_width="fill_parent"
android:layout_height="wrap_content" android:orientation="vertical"
android:padding="5dp">
<ImageView android:id="@+id/logoImageView"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:src="@drawable/logo" android:contentDescription="@string/app_name" />
<TextView android:id="@+id/demoTextView"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="@string/logDetails" android:gravity="center_horizontal|center" />
<EditText android:id="@+id/emailEditText"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:hint="@string/loginHint" android:imeOptions="actionNext"
android:inputType="textEmailAddress" android:padding="20dp" />
<EditText android:id="@+id/passEditText"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:hint="@string/password" android:imeOptions="actionDone"
android:inputType="textPassword" android:padding="20dp" />
<TableRow android:id="@+id/rememberTableRow"
android:layout_width="wrap_content" android:layout_height="wrap_content">
<TextView android:id="@+id/rememberTextView"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="@string/rememberDetails" android:layout_gravity="center" />
<CheckBox android:id="@+id/rememberCheckBox"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:padding="20dp" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="showPopup"
android:src="@drawable/abs__ic_menu_moreoverflow_holo_dark" android:layout_weight="1" android:layout_gravity="center|right"/>
</TableRow>
<TableRow android:id="@+id/buttonTableRow"
android:layout_width="match_parent" android:layout_height="wrap_content">
<Button android:id="@+id/registerButton" android:layout_width="0dip"
android:layout_height="wrap_content" android:layout_gravity="bottom"
android:layout_weight="1" android:text="@string/register" />
<Button android:id="@+id/loginButton" android:layout_width="0dip"
android:layout_height="wrap_content" android:layout_gravity="bottom"
android:layout_weight="1" android:text="@string/login" />
</TableRow>
</TableLayout>
</ScrollView>
以下是我已经查看并尝试用作解决方案的 SO 问题: 将 ImageView 对齐到布局 android 的右侧 与分层布局的 android 中的中心对齐 Android ImageButton not display on the right side of the screen