У меня вопрос по поводу разных разрешений в андроиде.Я закодировал XML-файл GUI в RelativeLayout.Я создал маленькие картинки, а рядом с картинками я хочу посмотреть текст.Моя проблема возникает, когда я меняю разрешение, текстовые представления «тексты» перемещаются, и я боюсь, что это будет выглядеть плохо в разных разрешениях.
То, что я сделал сейчас, например, я создаю изображение, для этого изображения я создаю текстовое представление, и это текстовое представление находится ниже другого изображения, например, с 19 пикселями.Но если я изменю разрешение, то 19 пикселей могут быть слишком большими или низкими по расстоянию, и текст из texview будет отображаться в неправильном положении на экране.
Как я могу преодолеть эту проблему сразличные разрешения и создание графического интерфейса с RealtiveLayout, который определяет расстояния в пикселях.Часто я хочу расстояние около 20 пикселей между различными текстовыми представлениями, как вы видите в моем коде ниже.
Это мой пример кода:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView android:id="@+id/ScrollView01"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stretchColumns="1"
android:weightSum="1.0"
android:background="#adaeb5">
<TextView android:text="@+id/TextView03" android:id="@+id/TextView03"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:textStyle="bold"
android:textSize="21dp"
android:shadowDy="1.5"
android:textColor="#FFFFFF"
android:shadowColor="#212421"
android:shadowRadius="1.5"
android:shadowDx="1.5"/>
<ImageView android:id="@+id/ImageView01"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_below="@+id/TextView03" android:paddingTop="35px"
/>
<ImageView android:id="@+id/ImageView02"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_below="@+id/ImageView01" android:paddingTop="20px"
/>
<ImageView android:id="@+id/ImageView03"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_below="@+id/ImageView02" android:paddingTop="20px"
/>
<ImageView android:id="@+id/ImageView04"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_below="@+id/ImageView03" android:paddingTop="20px"
/>
<TextView android:text="@+id/TextView01" android:id="@+id/TextView01"
android:shadowDy="1.0"
android:shadowColor="#bdbebd"
android:shadowRadius="1.0"
android:shadowDx="1.0"
android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#212421"
android:layout_toRightOf="@+id/ImageView01" android:layout_below="@+id/TextView03" android:paddingTop="36px"/>
<TextView android:text="@+id/TextView02" android:id="@+id/TextView02"
android:shadowDy="1.0"
android:shadowColor="#bdbebd"
android:shadowRadius="1.0"
android:shadowDx="1.0"
android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#212421"
android:layout_below="@+id/TextView01" android:layout_toRightOf="@+id/ImageView02" android:paddingTop="25px"/>
<TextView android:text="@+id/TextView04" android:id="@+id/TextView04"
android:shadowDy="1.0"
android:shadowColor="#bdbebd"
android:shadowRadius="1.0"
android:shadowDx="1.0"
android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#212421"
android:layout_below="@+id/TextView02" android:layout_toRightOf="@+id/ImageView03" android:paddingTop="15px"/>
<TextView android:text="@+id/TextView05" android:id="@+id/TextView05"
android:shadowDy="1.0"
android:shadowColor="#bdbebd"
android:shadowRadius="1.0"
android:shadowDx="1.0"
android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#212421"
android:layout_below="@+id/TextView04" android:layout_toRightOf="@+id/ImageView04" android:paddingTop="19px"/>
<TextView android:text="@+id/TextView07" android:id="@+id/TextView07"
android:textStyle="bold"
android:textSize="21dp"
android:shadowDy="1.5"
android:textColor="#FFFFFF"
android:shadowColor="#212421"
android:shadowRadius="1.5"
android:shadowDx="1.5"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_centerHorizontal="true" android:layout_below="@+id/TextView05" android:paddingTop="30px"/>
<TextView android:text="@+id/TextView08" android:id="@+id/TextView08"
android:shadowDy="1.0"
android:shadowColor="#bdbebd"
android:shadowRadius="1.0"
android:shadowDx="1.0"
android:paddingLeft="20px"
android:paddingRight="25px"
android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#212421" android:textSize="16dp"
android:layout_below="@+id/TextView07" android:layout_toRightOf="@+id/ImageView05" android:paddingTop="20px" android:paddingBottom="20px"/>
<Button android:id="@+id/help_button2" android:layout_below="@+id/TextView08"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_centerHorizontal="true" android:text="Previous" />
</RelativeLayout>
</ScrollView>
/ thx заранее