索尼爱立信 xperia 的layout_gravity 或layout_margin?

发布于 2024-11-14 05:23:56 字数 1570 浏览 3 评论 0原文

我的问题是显示一个带有 textView 的框(例如) 在索尼爱立信xperia 上指定layout_gravity 或layout_margin。

对于其他设备,以下代码执行其应该执行的操作 但不适用于 xperia。 在 xperia 上使用它时,该框始终显示在右侧。 没有居中,也没有边距。

有人知道我该如何修复它吗?

message.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:id="@+id/message"
    android:orientation="vertical"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/rounded_border"
    android:layout_gravity="bottom|center_horizontal"
    android:minWidth="0dp"
    android:minHeight="0dp"
    android:layout_marginBottom="22dp"
    android:layout_marginLeft="30dp"
    android:layout_marginRight="30dp"
    android:layout_marginTop="10dp"
    >

    <TextView android:id="@+id/messsage_text_id" android:gravity="left"
        android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:text="@+id/message_text"
        android:textSize="14sp"
        android:textColor="@color/whiteColor"
        android:layout_margin="7dp"/>

</LinearLayout>

JavaClass.java

...
LayoutInflater inflater = ((Activity)context).getLayoutInflater();
        mMessageView = inflater.inflate(R.layout.message, parentView, false);
        ((Activity)context).addContentView(mMessageView, mMessageView.getLayoutParams());
        setText("message");//default text
        mMessageView.setVisibility(View.VISIBLE);
...

My problem is to show a box with a textView (for example) with
specified layout_gravity or layout_margin at the sony ericsson xperia.

For other devices the following code do what it should do
but not for the xperia.
Using it at xperia the box is showing on the right side always.
There works no centering and no margin.

Do anybody knows how I can fix it?

message.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:id="@+id/message"
    android:orientation="vertical"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/rounded_border"
    android:layout_gravity="bottom|center_horizontal"
    android:minWidth="0dp"
    android:minHeight="0dp"
    android:layout_marginBottom="22dp"
    android:layout_marginLeft="30dp"
    android:layout_marginRight="30dp"
    android:layout_marginTop="10dp"
    >

    <TextView android:id="@+id/messsage_text_id" android:gravity="left"
        android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:text="@+id/message_text"
        android:textSize="14sp"
        android:textColor="@color/whiteColor"
        android:layout_margin="7dp"/>

</LinearLayout>

JavaClass.java

...
LayoutInflater inflater = ((Activity)context).getLayoutInflater();
        mMessageView = inflater.inflate(R.layout.message, parentView, false);
        ((Activity)context).addContentView(mMessageView, mMessageView.getLayoutParams());
        setText("message");//default text
        mMessageView.setVisibility(View.VISIBLE);
...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文