Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 android 应用程序上有一个文本视图,我想将其放置在屏幕上的特定位置。这是因为屏幕上有一个背景,文本视图必须与我在背景中为其创建的空间一致。
我正在使用边距移动文本并输入例如 20dp 作为上边距 10dp 作为右边距。
我可以使用任何其他方法来确保文本视图将显示在所有设备上的正确位置吗?由于其他设备 mas 具有更高或更低的分辨率。
使用 relativelayout,您可以更好地控制视图的位置。
android:layoutalign_parentright=true标签使视图始终正确。
android:layoutalign_parentright=true
android:align_right="@id/someViewId"使该视图的右边缘与someViewId视图的右边缘对齐。
android:align_right="@id/someViewId"
它包含许多标签,使您能够执行此类操作。