Разное разрешение экрана показывает хорошее на планшете (1024x768), но плохое на телефоне (800x480) - PullRequest
0 голосов
/ 09 марта 2012

У меня проблема с моим приложением для Android. Когда я использую сенсорную панель hp с разрешением 1024x768, все выглядит нормально. Однако, когда я тестировал его на 800x480 (Desire HD), это произошло: enter image description here

Вот мой XML-файл:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:id="@+id/linearLayoutH1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight=".25"
        android:orientation="vertical"
        android:weightSum="1" >
        <EditText
            android:id="@+id/result"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:editable="false"
            android:layout_weight=".50"
             />
        <EditText
            android:id="@+id/entry"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:editable="false"
            android:layout_weight=".50"
            />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/linearLayoutH3"
        android:layout_width="fill_parent"
        android:layout_height="100sp"

        android:orientation="horizontal"
        android:weightSum="1.0" >

        <Button
            android:id="@+id/buttonClear"
            style="@style/ButtonText"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:background="@drawable/custombuttonred"
            android:text="@string/clear"
            android:layout_weight=".40"
            android:textSize="50sp" />

          <ImageButton
            style="@style/ButtonText"
            android:id="@+id/c101_image"
            android:layout_width="40sp"
            android:layout_height="100sp"
            android:scaleType="centerInside"
            android:background="@drawable/cloud101"
            android:layout_weight=".20" />


         <Button
            android:id="@+id/buttonBackspace"
            style="@style/ButtonText"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:background="@drawable/custombuttonred"
            android:text="@string/backspace"
            android:layout_weight=".40"
            android:textSize="30sp" />

    </LinearLayout>

    <LinearLayout
        android:id="@+id/linearLayoutH2"
        android:layout_width="fill_parent"
        android:layout_height="50sp"
        android:layout_weight=".25"
        android:orientation="horizontal"
        android:weightSum="1.0" >

        <Button
            android:id="@+id/button1"
            style="@style/ButtonText"
            android:layout_width="50sp"
            android:layout_height="fill_parent"
            android:layout_weight=".25"
            android:background="@drawable/custombutton"
            android:text="@string/b1"
            android:textSize="110sp" />

        <Button
            android:id="@+id/button2"
            style="@style/ButtonText"
            android:layout_width="50sp"
            android:layout_height="fill_parent"
            android:layout_weight=".25"
            android:background="@drawable/custombutton"
            android:text="2"
            android:textSize="110sp" />

        <Button
            android:id="@+id/button3"
            style="@style/ButtonText"
            android:layout_width="50sp"
            android:layout_height="fill_parent"
            android:layout_weight=".25"
            android:background="@drawable/custombutton"
            android:text="3"
            android:textSize="110sp" />

        <Button
            android:id="@+id/buttonDevide"
            style="@style/ButtonText"
            android:layout_width="50sp"
            android:layout_height="fill_parent"
            android:layout_weight=".25"
            android:background="@drawable/custombuttonblue"
            android:text="/"
            android:textSize="110sp" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/linearLayoutH3"
        android:layout_width="fill_parent"
        android:layout_height="50sp"
        android:layout_weight=".25"
        android:orientation="horizontal"
        android:weightSum="1.0" >

        <Button
            android:id="@+id/button4"
            style="@style/ButtonText"
            android:layout_width="50sp"
            android:layout_height="fill_parent"
            android:layout_weight=".25"
            android:background="@drawable/custombutton"
            android:text="4"
            android:textSize="110sp" />

        <Button
            android:id="@+id/button5"
            style="@style/ButtonText"
            android:layout_width="50sp"
            android:layout_height="fill_parent"
            android:layout_weight=".25"
            android:background="@drawable/custombutton"
            android:text="5"
            android:textSize="110sp" />

        <Button
            android:id="@+id/button6"
            style="@style/ButtonText"
            android:layout_width="50sp"
            android:layout_height="fill_parent"
            android:layout_weight=".25"
            android:background="@drawable/custombutton"
            android:text="6"
            android:textSize="110sp" />

        <Button
            android:id="@+id/buttonMult"
            style="@style/ButtonText"
            android:layout_width="50sp"
            android:layout_height="fill_parent"
            android:layout_weight=".25"
            android:background="@drawable/custombuttonblue"
            android:text="X"
            android:textSize="110sp" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/linearLayoutH4"
        android:layout_width="fill_parent"
        android:layout_height="50sp"
        android:layout_weight=".25"
        android:orientation="horizontal"
        android:weightSum="1.0" >

        <Button
            android:id="@+id/button7"
            style="@style/ButtonText"
            android:layout_width="50sp"
            android:layout_height="fill_parent"
            android:layout_weight=".25"
            android:background="@drawable/custombutton"
            android:text="7"
            android:textSize="110sp" />

        <Button
            android:id="@+id/button8"
            style="@style/ButtonText"
            android:layout_width="50sp"
            android:layout_height="fill_parent"
            android:layout_weight=".25"
            android:background="@drawable/custombutton"
            android:text="8"
            android:textSize="110sp" />

        <Button
            android:id="@+id/button9"
            style="@style/ButtonText"
            android:layout_width="50sp"
            android:layout_height="fill_parent"
            android:layout_weight=".25"
            android:background="@drawable/custombutton"
            android:text="9"
            android:textSize="110sp" />

        <Button
            android:id="@+id/buttonMinus"
            style="@style/ButtonText"
            android:layout_width="50sp"
            android:layout_height="fill_parent"
            android:layout_weight=".25"
            android:background="@drawable/custombuttonblue"
            android:text="-"
            android:textSize="110sp" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/linearLayoutH5"
        android:layout_width="fill_parent"
        android:layout_height="50sp"
        android:layout_weight=".25"
        android:orientation="horizontal"
        android:weightSum="1.0" >

        <Button
            android:id="@+id/button0"
            style="@style/ButtonText"
            android:layout_width="50sp"
            android:layout_height="fill_parent"
            android:layout_weight=".25"
            android:background="@drawable/custombutton"
            android:text="0"
            android:textSize="110sp" />

        <Button
            android:id="@+id/buttonDot"
            style="@style/ButtonText"
            android:layout_width="50sp"
            android:layout_height="fill_parent"
            android:layout_weight=".25"
            android:background="@drawable/custombuttonblue"
            android:text="."
            android:textSize="110sp" />

        <Button
            android:id="@+id/buttonEq"
            style="@style/ButtonText"
            android:layout_width="50sp"
            android:layout_height="fill_parent"
            android:layout_weight=".25"
            android:background="@drawable/custombuttongreen"
            android:text="="
            android:textSize="110sp" />

        <Button
            android:id="@+id/buttonPlus"
            style="@style/ButtonText"
            android:layout_width="50sp"
            android:layout_height="fill_parent"
            android:layout_weight=".25"
            android:background="@drawable/custombuttonblue"
            android:text="+"
            android:textSize="110sp" />
    </LinearLayout>

</LinearLayout>

Я читал о проблемах с разным размером экрана, но независимо от того, пользуюсь я sp или dp, на экране 800x480 он все равно выглядит плохо. Что я должен сделать, чтобы правильно отобразить шрифт, чтобы картинка была хорошо отцентрирована и не была слишком плотно закрыта?

Ответы [ 2 ]

2 голосов
/ 09 марта 2012

Во-первых: Вы не должны использовать sp для измерений видов. Пользователь dp для размеров видов и sp для размера текста. Второе: если вы используете weightsum и layout_weight, вам не нужны размеры для ширины видов, вы даете им значение 0dp, и они будут отрисованы нормально.

Например, если вы используете эту конфигурацию:

 <ImageButton
       style="@style/ButtonText"
       android:id="@+id/c101_image"
       android:layout_width="0dp"
       android:layout_height="fill_parent"
       android:scaleType="centerInside"
       android:background="@drawable/cloud101"
       android:layout_weight=".20" />

Ваша кнопка image должна отображаться корректно на всех экранах. Используйте одну и ту же технику для всех ваших взглядов, и это должно решить вашу проблему.

Примечание : используйте меньший шрифт для вашего текста:)

Удачи, Arkde

1 голос
/ 09 марта 2012

ваш textSize слишком велик для этого устройства.

Создайте себе обычную папку в своей директории res и вставьте туда копию своего макета. измените 110sp на ваших кнопках вниз на что-то меньшее. возможно начать пытаться с 70sp или что-то. Тест с разными размерами, пока один не будет выглядеть хорошо.

Также, если вы хотите, чтобы ваше приложение поддерживало маленькие экраны, вам нужно будет сделать для них еще одну копию файла макета.

...