我想在顶部使用循环视图并将布局居中。 如您所见,此循环的一半位于布局内,另一半位于布局之外。
我该怎么做?使用FrameLayout
或RelativeLayout
?
我的橙色周期:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid
android:color="@color/color_light_main_color"/>
<size
android:width="2dp"
android:height="2dp"/>
</shape>
答案 0 :(得分:0)
尝试使用它:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<YourMainView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:margin_top="1dp"/>
<YourCycle
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="true"
android:layout_centerHorizontal="true"
/>
<\RelativeLayout>