Android:屏幕布局在同一型号的2部手机上看起来不同

时间:2014-05-31 01:45:09

标签: android xml android-layout galaxy

我正在测试应用程序,因此人们第一次在多个设备上查看它。有人告诉我屏幕上的按钮被切断了。

奇怪的是 - 我们正在使用相同的设备。我们都使用三星Galaxy S3,因此我们的屏幕分辨率应该相同。

  1. 他(或我)的手机上是否有一些设置可能会改变分辨率以查看更大的内容? (比如浏览器中的ctrl +)
  2. 还有什么可能导致这个?
  3. 下面的截图和XML。右边的差异:文字较大,缺少自制椭圆,设置按钮被切断

    Good Screenshot Bad screenshot

    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        tools:context="com.farmsoft.lunchguru.app.Pick_Restaurant"
        android:layout_height="match_parent"
        android:layout_width="match_parent">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:orientation="vertical">
    
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/PickRest_Header"
            android:textStyle="bold"
            android:textSize="20sp"
            android:gravity="center_horizontal"
            android:id="@+id/Lbl_Title"/>
    
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/PickRest_CompanionHdr"/>
    
        <TableLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/Companion_Box">
    
        </TableLayout>
    
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="right"
            android:orientation="horizontal">
    
            <Button
                android:layout_width="45dp"
                android:layout_height="30dp"
                android:text="•••"
                android:gravity="top"
                android:id="@+id/More_Companions"
                android:onClick="onClick_More_Companions"/>
    
            </LinearLayout>
    
        <Space
            android:layout_width="0dip"
            android:layout_height="35dp" />
    
        <com.farmsoft.lunchguru.utils.ListButton
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/PickRest_Recommend_Button"
            android:id="@+id/Recommend_Button"
            android:onClick="onClick_Recommend"
            android:enabled="false"/>
    
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/OR"
            android:gravity="center_horizontal"
            android:textSize="10pt"
            android:textStyle="bold"/>
    
        <com.farmsoft.lunchguru.utils.ListButton
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/PickRest_Nearby_Button"
            android:id="@+id/Nearby_Button"
            android:onClick="onClick_Nearby"
            android:enabled="false"/>
    
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/OR"
            android:gravity="center_horizontal"
            android:textSize="10pt"
            android:textStyle="bold"/>
    
        <com.farmsoft.lunchguru.utils.ListButton
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/PickRest_Search_Button"
            android:id="@+id/Search_Button"
            android:onClick="onClick_Search"/>
    
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/Lbl_Version"/>
    
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/Lbl_Coordinates"
            android:text="@string/PickRest_Coordinates_Load"/>
    
        <Space
            android:layout_width="0dip"
            android:layout_height="35dp" />
    
        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/PickRest_IAteThere_Button"
            android:id="@+id/Attend_Button"
            android:onClick="onClick_Attend"
            android:visibility="gone"/>
    
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
    
            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/Ratings_Button"
                android:text="@string/PickRest_Rating_Button"
                android:onClick="onClick_Ratings"
                android:enabled="false"/>
            <Space
                android:layout_width="0dp"
                android:layout_height="0dip"
                android:layout_weight="1" />
            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/Settings_Button"
                android:text="@string/PickRest_Settings_Button"
                android:onClick="onClick_Settings"/>
            </LinearLayout>
    
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
    
            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/Connections_Button"
                android:text="@string/PickRest_Connections_Button"
                android:onClick="onClick_Connections"/>
    
            <Space
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"/>
            </LinearLayout>
    </LinearLayout>
    </ScrollView>
    

1 个答案:

答案 0 :(得分:1)

您可以使用sp指定字体大小,正确执行所有操作。这将根据系统范围的字体比例缩放您选择的字体。其中一个用户增加了系统范围的字体大小。在AOSP手机上,这是设置/显示/字体大小。应该与三星设备类似。