gpt4 book ai didi

Android布局,如何定位两个图像和一个搜索栏

转载 作者:行者123 更新时间:2023-11-29 16:15:23 25 4
gpt4 key购买 nike

我想要实现的目标

我正在尝试使布局等于下一个链接: http://www.flickr.com/photos/59647462@N08/7038207573/

我有什么

  <LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/minVolume"
android:src="@drawable/ic_volume_min" />

<SeekBar
android:id="@+id/seekBar1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/maxVolume"
android:src="@drawable/ic_volume_max" />
</LinearLayout>

我使用这段代码得到的结果是搜索栏在右侧图标上延伸。

  • 我想让它在不同的屏幕上适当缩放
  • 如果可以不使用权重属性,我会喜欢这个解决方案

感谢任何建议

最佳答案

在 SeekBar 中使用 android:layout_weight="0.9"

不使用layout_weight

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<ImageView
android:id="@+id/left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:contentDescription="@string/minVolume"
android:src="@drawable/ic_volume_min" />
<ImageView
android:id="@+id/right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/maxVolume"
android:src="@drawable/ic_volume_max"
android:layout_alignParentRight="true" />
<SeekBar
android:id="@+id/seekBar1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/left"
android:layout_centerVertical="true"
android:layout_toLeftOf="@+id/right" />
</RelativeLayout>

关于Android布局,如何定位两个图像和一个搜索栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9974361/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com