我有一个非常奇怪的TextView布局行为,只发生在Galaxy S5中。 问题是当我将文本样式设置为斜体时,与屏幕右侧对齐的TextView似乎从屏幕中出来(TextView有一个矩形边框)。
这个奇怪的问题只出现在Galaxy S5中!在我尝试过我的应用程序的所有其他设备中,甚至在S3和S4等其他三星上,一切看起来都很好!
任何人都可以解释这种行为,也许可以为此提供一些解决方案吗?
我有截图,但我仍然无法在此处发布图片。
请按原样参考布局xml!我只是评论textStyle =" italic"然后一切看起来都很棒! 只有S5家伙..
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/Black" >
<LinearLayout
android:id="@+id/timerLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:orientation="horizontal" >
<RelativeLayout
android:layout_width="0dp"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="@drawable/nicetextframe" >
<ImageView
android:id="@+id/imRecording"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:src="@drawable/ic_recording"
android:visibility="gone" />
</RelativeLayout>
<TextView
android:id="@+id/tvTimer"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_above="@+id/gpsDataTable"
android:layout_weight="5"
android:background="@drawable/nicetextframe"
android:gravity="center"
android:text="00:00"
android:textColor="@color/YellowGreen"
android:textSize="35sp"
android:textStyle="italic" />
Ï
</LinearLayout>
<LinearLayout
android:id="@+id/guegesLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/timerLayout"
android:orientation="horizontal" >
<TextView
android:id="@+id/tvSpeed"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_above="@+id/gpsDataTable"
android:layout_weight="1"
android:background="@drawable/nicetextframe"
android:gravity="center"
android:text="0.0"
android:textColor="@color/YellowGreen"
android:textSize="40sp"
android:textStyle="italic"/>
<TextView
android:id="@+id/tvDistance"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_above="@+id/gpsDataTable"
android:layout_weight="1"
android:background="@drawable/nicetextframe"
android:gravity="center"
android:text="0.0"
android:textColor="@color/YellowGreen"
android:textSize="40sp"
android:textStyle="italic" />
</LinearLayout>
<LinearLayout
android:id="@+id/mapLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/tableRow1"
android:layout_below="@+id/guegesLayout"
android:background="@drawable/nicesqureframe"
android:orientation="horizontal" >
<fragment
android:id="@+id/map"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_marginBottom="20dp"
android:layout_marginLeft="25dp"
android:layout_marginRight="25dp"
android:layout_marginTop="20dp"
class="com.google.android.gms.maps.MapFragment" />
</LinearLayout>
<TableRow
android:id="@+id/tableRow1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@drawable/black_gradient" >
<ToggleButton
android:id="@+id/btStartStop"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/button_selector"
android:textColor="@color/DarkGreen"
android:textOff="@string/NewTrip"
android:textOn="@string/StopTrip"
android:textStyle="bold" />
<Button
android:id="@+id/btClose"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/button_selector"
android:text="@string/Close"
android:textColor="@color/DarkGreen"
android:textStyle="bold" />
</TableRow>
</RelativeLayout>