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 中垂直获得一个视图中心,但我在顶部有一个 75dps 的 imageView,所以我需要我的居中视图从顶部偏移 75dps 以便它居中!有没有办法做到这一点?我尝试使用 android:layout_marginTop="75dp" 但它没有用!有任何想法吗?
您可以将您的视图包装成一个 ViewGroup(例如 LinearLayout),然后使 LinearLayout 居中,并将 marginTop 添加到您的视图中。它应该工作。
无论如何,如果您也发布您的布局 xml,那将会很有帮助。