1

我正在开发一个在 Xperia Z 和 Xperia tablet Z 上运行的 Android 应用程序。我的问题是 Gravity.RIGHT 属性在 AndroidManifest 中的 anyDensity=true 时生效,但在 anyDensity=false 时它不起作用。一些最右边的字符被部分隐藏,如下所示。我在 TextView 和 Layout 中尝试了各种设置更改,但未能全部显示。当anyDensity = false时,有人可以告诉我应该设置什么以使Gravity.RIGHT完全工作吗?

谢谢你。

`

----------------------------------------
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#000000"
    >

    <TextView
    android:id="@+id/textDP"
    android:textStyle="bold"
    android:typeface="normal"
    android:textSize="15.125dp"
    android:textColor="#0000ff"
    android:background="#cccccc"
    android:layout_width="200dp"
    android:layout_height="wrap_content"
    android:gravity="center_vertical|right"
    android:layout_marginLeft="50px"
    android:layout_marginTop="50px"
    android:text="@string/Sample001"
    />

    <TextView
    android:id="@+id/textDP"
    android:textStyle="bold"
    android:typeface="normal"
    android:textSize="15.125dp"
    android:textColor="#0000ff"
    android:background="#cccccc"
    android:layout_width="200dp"
    android:layout_height="wrap_content"
    android:gravity="center_vertical|right"
    android:layout_marginLeft="50px"
    android:layout_marginTop="75px"
    android:text="@string/Sample002"
    />

    : #Omission
----------------------------------------

`

4

1 回答 1

0

如果你使用 android:anyDensity="false"。这会导致您进入您不想要的旧密度兼容模式。而不是设置您的文本大小/布局宽度等。使用 pt 使用与密度无关的 dp。干杯

于 2013-03-26T12:07:09.067 回答