У меня есть логотип (id - tri_logo), который находится справа.Рядом с этим, слева от этого мне нужно разместить счетчик версий (id is version_text).Но количество версий не отображается рядом с tri_logo, который является правильным.
Проще говоря, мне нужно разместить вот так. Вы можете видеть, что v1.0 находится рядом с правой стороной tri_logo.
<Centered Icon which is already placed> v1.0 <tri_logo>
Ниже приведен код XML.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toplayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:layout_marginRight="20dp"
android:orientation="horizontal">
<LinearLayout
android:id="@+id/lout_profile_header"
android:layout_width="match_parent"
android:layout_height="@dimen/top_view_height"
android:layout_weight="1"
android:clickable="true"
android:gravity="center"
android:orientation="horizontal">
<ImageView
android:id="@+id/imgTopProfile"
android:layout_width="@dimen/profilie_icon_size"
android:layout_height="@dimen/profilie_icon_size"
android:layout_margin="@dimen/hdr_img_padding"
android:src="@mipmap/ic_profile" />
<TextView
android:id="@+id/textTopProfile"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginLeft="@dimen/hdr_name_padding" />
</LinearLayout>
<TextView
android:id="@+id/version_text" //this is not fitting near to below logo
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.2"
android:text="v1.7"/>
<ImageView
android:id="@+id/tri_logo"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_gravity="right"
android:layout_weight="1"
android:src="@drawable/tri_logo" />
</LinearLayout>