android 文本查看位置

发布于 2024-11-09 03:38:09 字数 469 浏览 0 评论 0原文

我需要更改什么才能使文本显示在屏幕右上角?

    <TextView android:id="@+id/MyTextView"
            android:gravity="center"
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:textStyle="bold" 
            android:textSize="32sp" 
            android:text="CENTER" 
            android:editable="false" 
            android:singleLine="true"
            android:layout_margin="10px"/>  

What do I need to change for the text to appear in the upper right corner of the screen?

    <TextView android:id="@+id/MyTextView"
            android:gravity="center"
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:textStyle="bold" 
            android:textSize="32sp" 
            android:text="CENTER" 
            android:editable="false" 
            android:singleLine="true"
            android:layout_margin="10px"/>  

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抱猫软卧 2024-11-16 03:38:09

当您想要良好的布局控制时,您的首选应该是RelativeLayout:

http: //developer.android.com/reference/android/widget/RelativeLayout.LayoutParams.html

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
  xmlns:android="http://schemas.android.com/apk/res/android"       
  android:layout_width="fill_parent" 
  android:layout_height="fill_parent"
  > 
  <TextView android:id="@+id/MyTextView"
    android:gravity="center"
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:textStyle="bold" 
        android:textSize="32sp" 
        android:text="CENTER" 
        android:editable="false" 
        android:singleLine="true"
        android:layout_alignParentTop="true"
        android:layout_alignParentRight="true"
  />
</RelativeLayout>

When you want good layout control, your first choice should be a RelativeLayout:

http://developer.android.com/reference/android/widget/RelativeLayout.LayoutParams.html

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
  xmlns:android="http://schemas.android.com/apk/res/android"       
  android:layout_width="fill_parent" 
  android:layout_height="fill_parent"
  > 
  <TextView android:id="@+id/MyTextView"
    android:gravity="center"
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:textStyle="bold" 
        android:textSize="32sp" 
        android:text="CENTER" 
        android:editable="false" 
        android:singleLine="true"
        android:layout_alignParentTop="true"
        android:layout_alignParentRight="true"
  />
</RelativeLayout>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文