我对海底的不同决议有疑问。 我在相关的Layout编篡了一个Xml GUI文件。 Ive造就了小幅画面,在图象旁边,我想读书。 我的问题是,在我改变决议时,“案文”的行文,我很抱歉,这会在不同的决议中看不到。
What I have done now, I for example create a image, toRightOf that image I create a textview and this textview is below another image with for example 19 pixels. But if I change the resolution, the 19 pixels can be to much or to low in distance, and the text from the texview will be shown in the wrong position on the screen.
如何用不同的决议来解决这一问题,并建立一个以现实态度界定食谱距离的智囊团。 我常常想像你在我下面的法典中看到的那样,在不同的文本概览之间保持距离。
This is my example code:
<?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>
页: 1