嗨,大家好我已经在here
的应用程序中实现了CarouselView
我想将视图放在屏幕的中央。你能告诉我怎么做吗?我试图改变主要布局。
这是我现在的主要布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:pj="http://schemas.android.com/apk/res/com.demo.main"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<com.demo.controls.Carousel
android:id="@+id/cvMenu"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:animationDuration="200"
android:gravity="top"
pj:Items="@array/entries"
pj:Names="@array/names"
pj:SelectedItem="0"
pj:UseReflection="false" />
</LinearLayout>
答案 0 :(得分:0)
就像更改此内容一样简单:android:gravity="top"
到android:gravity="center"