我尝试并寻找解决此问题的方法无济于事。字母的顶部,例如小写“d”中的尾部被剪掉。这是我目前拥有的:
代码方面:
从 onClickHandler ......
字符串选择顺序 = ""; ... if (num_players == 3) { editor.putString("prefPrefp3_name", child.getText().toString()); selectedorder = "3 rd ";} ... order.setText(Html.fromHtml(selectedorder));
从 CursorAdapter BindView.......
TextView tv4 = (TextView) view.findViewById(R.id.dspplyrorder);
tv4.setText(Html.fromHtml(playersCursor.getString(PlayerOrder)));
从 XML 中,我试图让 @+id/dspplyrorder 在我的上标中不剪掉“d”的尾部......................
<LinearLayout android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView android:id="@+id/dsp_id"
android:layout_width="120dip"
android:layout_height="wrap_content"/>
<TextView android:id="@+id/dspplyrname"
android:layout_width="180dip"
android:textColor="#7CFC00"
android:textStyle="italic"
android:layout_marginRight="20dip"
android:layout_marginLeft="20dip"
android:paddingRight="3dp"
android:gravity="left"
android:textSize="25sp"
android:layout_height="wrap_content"/>
<TextView android:id="@+id/dspplyrorder"
android:layout_width="30dip"
android:gravity="left"
android:textColor="#FFFFFF"
android:textSize="16sp"
android:layout_height="wrap_content"/>
<ToggleButton android:id="@+id/button_toggle"
android:text="@string/buttons_1_toggle"
android:textOff="Select"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:onClick="myClickHandler" />
</LinearLayout>
我不担心影响上下行的行距,这似乎是最常出现的问题讨论。我必须做一些真正的转储,因为似乎没有其他人有这个问题。请帮忙。