gpt4 book ai didi

android - 如何设置两个布局的高度。?

转载 作者:行者123 更新时间:2023-11-30 04:31:19 25 4
gpt4 key购买 nike

我在安卓系统工作。 这是我的 xml:-

请仔细检查。**

<RelativeLayout 
android:layout_width="wrap_content" android:layout_height="140dip" android:id="@+id/rl_for_image_title" >

<ImageView
android:id="@+id/music_player_logo"
android:layout_height="fill_parent"
android:layout_width="100dip"

android:src="@drawable/musicplayer_logo"/>

</RelativeLayout>


<RelativeLayout android:layout_width="wrap_content" android:layout_height="140dip" android:id="@+id/rl_for_texts" android:layout_toRightOf="@+id/rl_for_image_title" >

<TextView
android:id="@+id/music_player_title_name"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Title :"
android:layout_marginLeft="15dip"/>


<TextView
android:layout_below="@+id/music_player_title_name"
android:id="@+id/music_player_artist_name"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Artist : "
android:layout_marginLeft="15dp"/>


<TextView
android:layout_below="@+id/music_player_artist_name"
android:id="@+id/music_player_category"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Category : "
android:layout_marginLeft="15dp"/>
<TextView
android:layout_below="@+id/music_player_category"
android:id="@+id/music_player_date"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Date : "
android:layout_marginLeft="15dp"
/>
<TextView
android:layout_below="@+id/music_player_date"
android:id="@+id/music_player_song_price"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Price : "
android:layout_marginLeft="15dp"
/>
</RelativeLayout>

<RelativeLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/rl_for_seekbar" android:layout_below="@+id/rl_for_texts" android:layout_marginTop="20dip" >

<ImageButton

android:id="@+id/ButtonTestPlayPause"
android:layout_height="40dip"
android:layout_width="fill_parent"
android:src="@drawable/button_play"/>
<SeekBar
android:layout_below="@+id/ButtonTestPlayPause"
android:id="@+id/SeekBarTestPlay"
android:layout_height="20dip"
android:layout_width="match_parent"
android:thumb="@drawable/thumb_transparent"/>

<TextView
android:layout_below="@+id/SeekBarTestPlay"
android:id="@+id/SeekBarTime"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Time :"
android:layout_marginLeft="15dp"
/>

</RelativeLayout></RelativeLayout>

这是上述 xml 的输出:- enter image description here

我想和文字信息同级显示。我的图像顶层比标题、艺术家等 TextView 稍低一点。请建议我应该怎么做才能使这种对齐准确。 ?

最佳答案

将此替换为 ImageView 的相对布局:

<RelativeLayout 
android:layout_width="100dp" android:layout_height="140dip" android:id="@+id/rl_for_image_title" >

<ImageView
android:id="@+id/music_player_logo"
android:layout_height="wrap_content"
android:layout_width="100dp"
android:src="@drawable/icon"/>

</RelativeLayout>

关于android - 如何设置两个布局的高度。?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7649057/

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