Задать вопрос
mcavalon
@mcavalon
Девелопер

Вопрос по android верстке?

Как избежать такое (выделил красным):

14519bba79fdc37b24c2739717b5f046.png


Файл row.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

	<ImageView
			android:id="@+id/istar"
			android:layout_width="30dp"
			android:layout_height="30dp"
			android:paddingLeft="10dp" 
			android:layout_centerVertical="true"
			android:scaleType="fitCenter"
			android:src="@drawable/star" />
    
    <TextView
            android:id="@+id/imain"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:padding="20dp"
            android:layout_toRightOf="@id/istar"
            android:text="TextView"
            android:layout_gravity="center_vertical|left">
    </TextView>
    
    <TextView
            android:id="@+id/iname"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:padding="20dp"
            android:layout_toRightOf="@id/imain"
            android:text="TextView"
            android:layout_gravity="center_vertical|left"
            android:textSize="20sp">
    </TextView>
    
    <TextView
            android:id="@+id/icurrency"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="5dp"
            android:paddingTop="20dp"
            android:paddingBottom="20dp"
            android:paddingRight="20dp"
            android:text="TextView"
            android:layout_alignParentRight="true" 
            android:textSize="20sp">
    </TextView>
    
    <TextView
            android:id="@+id/ibalance"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:paddingLeft="20dp"
            android:paddingTop="20dp"
            android:paddingBottom="20dp"
            android:paddingRight="5dp"
            android:text="TextView"
            android:layout_toLeftOf="@id/icurrency"
            android:textSize="20sp">
    </TextView>
    
</RelativeLayout>



Заранее спасибо!
  • Вопрос задан
  • 4505 просмотров
Подписаться 6 Оценить Комментировать
Ответ пользователя Константин К ответам на вопрос (5)
Я вот никгода не отвечал на андроидные вопросы именно по вёрстке, но посмотрев на это, я в ужасе.
1. избегайте RelativeLayout!
2. переделайте на
<LinearLayout
  width="match_parent"
  height="wrap_content"
  orientation="horizontal"
  weight_sum="1">
    <TextView layoutWeight="1" width="0dp" height="wrap_content" drawable_left="@drawable/some_star_selector"/>
    <TextView width="wrap_content" />
    <TextView width="wrap_content" />
</LinearLayout>
Ответ написан