在顶部和中心使用循环视图布局 - android

时间:2015-01-31 22:14:12

标签: android android-layout

我想在顶部使用循环视图并将布局居中。 如您所见,此循环的一半位于布局内,另一半位于布局之外。

我该怎么做?使用FrameLayoutRelativeLayout

我的橙色周期:

<?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>

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以将它放在RelativeLayout内的ImageView中,使用&#34; layout_alignParentTop&#34;和&#34; layout_centerHorizo​​ntal&#34;真的

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:src="@drawable/circle" />