我的活动定义如下:
<activity
android:name=".ShareProActivity"
android:label="@string/title_activity_share_pro"
android:parentActivityName=".base.BaseActivity"
android:theme="@android:style/Theme.Holo.Dialog.NoActionBar">
我添加了橙色背景的文字视图:
<TextView
android:id="@+id/textView17"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Your friend can get 10% discount on the pro map. Click the following button to send the activation to your friend."
android:textSize="14sp"
android:layout_margin="@dimen/activity_vertical_margin"
android:padding="@dimen/activity_vertical_margin"
android:background="@android:color/holo_orange_dark"
android:textColor="@android:color/white"
android:textColorHint="@android:color/white" />
现在它在Nexus 5模拟器中看起来像这样。
那是怎么回事?我想删除黑色轮廓 - 只是橙色的白色文字。答案 0 :(得分:0)
原来这是由电话辅助功能设置“高对比度文本(实验)”引起的。我禁用了它,它看起来很好。