由于我有一个Nexus 5,我看到有关文字大小的奇怪内容。
一个例子:我正在创建listview项目。我在22sp放了一个更大的文本,在17sp放了一个更小的文本。
在我的HTC One X上,它看起来像这样:
所以我觉得“好的,那很好!”
然后我在我的Nexus 5上运行它:
我不明白为什么会这样?不应该'sp'部分确保它看起来不错 使用默认值?我不是在谈论用户增加设置中的字体大小,我已将所有内容保留为默认值。
尽管如此,如果我愿意(不要打我)在这里使用DP来禁用文本的字体大小更改,它将给出相同的结果(未经测试,但我相当确定这是其他测试的情况)
这是什么问题?它是较新的Android版本,还是1080p屏幕与720p?
我应该使用'values'文件夹为不同的DP使用不同的值吗?
这里是de layout:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="80dp"
android:orientation="horizontal">
<LinearLayout
android:id="@+id/background"
android:layout_marginTop="10dp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<com.android.volley.toolbox.NetworkImageView
android:id="@+id/image"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:adjustViewBounds="true"
android:scaleType="centerCrop" />
<RelativeLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_margin="5dp"
android:layout_weight="2">
<ImageView
android:id="@+id/arrow"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:adjustViewBounds="true" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="3dp"
android:layout_toLeftOf="@id/arrow"
android:gravity="center"
android:orientation="vertical">
<TextView
android:id="@+id/name"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:fontFamily="sans-serif-condensed"
android:textSize="22sp"
android:textStyle="bold" />
<TextView
android:id="@+id/address"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:textSize="17sp" />
</LinearLayout>
</RelativeLayout>
</LinearLayout>
</LinearLayout>
答案 0 :(得分:1)
例如,相同SP值的默认大小可能因设备而异,只是为了匹配为设备设计的可读性。
您遇到的问题是因为您有一些大小固定的元素,发布您用于行的XML代码,我们可以进行深入分析。
编辑 - 在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="wrap_content"
android:layout_margin="10dp"
android:orientation="horizontal" >
<com.android.volley.toolbox.NetworkImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="match_parent" />
<TextView
android:id="@+id/name"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/image"
android:layout_toLeftOf="@+id/arrow"
android:fontFamily="sans-serif-condensed"
android:textSize="22sp"
android:textStyle="bold" />
<TextView
android:id="@+id/address"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/image"
android:layout_toLeftOf="@id/arrow"
android:layout_below="@id/name"
android:textSize="17sp" />
<ImageView
android:id="@id/arrow"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_alignParentRight="true" />
</RelativeLayout>
您的布局太复杂而不是简单的行...现在布局将与TextViews需要的一样高,并且它不是问题,因为用户已经使用了他的文本大小。
答案 1 :(得分:0)
您必须创建两个不同的布局文件夹并查看结果