android 文本查看位置
我需要更改什么才能使文本显示在屏幕右上角?
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您想要良好的布局控制时,您的首选应该是RelativeLayout:
http: //developer.android.com/reference/android/widget/RelativeLayout.LayoutParams.html
When you want good layout control, your first choice should be a RelativeLayout:
http://developer.android.com/reference/android/widget/RelativeLayout.LayoutParams.html