使用 LinearLayout 和 ImageView 构建菜单
我尝试在屏幕底部使用 LinearLayout 和 ImageView 构建菜单
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/menu"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#343434"
android:gravity="left"
android:paddingTop="5px"
android:weightSum="1.0">
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:gravity="left"
android:id="@+id/home_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/home_1"
android:layout_weight=".20"/>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:gravity="left"
android:id="@+id/tournament_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/tournament_2"
android:layout_weight=".20"/>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:gravity="left"
android:id="@+id/massages_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/massages_2"
android:layout_weight=".20"/>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:gravity="left"
android:id="@+id/players_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/players_2"
android:layout_weight=".20"/>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:gravity="left"
android:id="@+id/settings_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/settings_2"
android:layout_weight=".20"/>
</LinearLayout>
我实际上尝试为各种尺寸的屏幕制作菜单,但是当图像适应屏幕的宽度并且当图像缩小时,主 LinearLayout 的高度保持不变就像它具有具有初始高度的图像大小。那么我的错误在哪里呢?我可以用其他方式做到这一点吗?
谢谢。
I try to build menu with LinearLayout and ImageView on the bottom of the screen
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/menu"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#343434"
android:gravity="left"
android:paddingTop="5px"
android:weightSum="1.0">
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:gravity="left"
android:id="@+id/home_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/home_1"
android:layout_weight=".20"/>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:gravity="left"
android:id="@+id/tournament_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/tournament_2"
android:layout_weight=".20"/>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:gravity="left"
android:id="@+id/massages_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/massages_2"
android:layout_weight=".20"/>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:gravity="left"
android:id="@+id/players_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/players_2"
android:layout_weight=".20"/>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:gravity="left"
android:id="@+id/settings_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/settings_2"
android:layout_weight=".20"/>
</LinearLayout>
I actually trying to make menu for various size screens but when images are adapted to the width of the screen and when the images are reduced main LinearLayout remains the same in height it's like it has size of images with initial height. So where are my mistakes here? And can I do this in other way?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试添加
到每个 ImageView 中。
IE:
Try adding
to each of your ImageViews.
ie: