赞
踩
我有一个ImageView和一个ImageButton.我们让他们在一个水平的布局旁边彼此相邻.我正在努力使图像在屏幕上保持对齐,并且按钮对齐.我已经尝试设置重力,但它似乎没有什么不同.我哪里错了?
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_weight="1"
android:gravity="left"
android:src="@drawable/short_logo" />
android:id="@+id/terminateSeed"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="right"
android:background="@null"
android:src="@drawable/unregister_icon" />
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。