カルーセル デザイン アプリケーションを作成しました。正常に動作しています。画面の中央にデフォルトのロゴを 1 つ表示したいと考えています。私は多くの方法を試していますので、助けてください。
これは私のスクリーンショットです:
カルーセル デザインの中央に 1 つのロゴを表示したいと考えています。
これは私のxmlソースコードです:
>
<LinearLayout
android:layout_weight="0.5"
android:padding="5dip"
android:gravity="top"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<com.globems.controls.Carousel
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/carousel"
pj:UseReflection="true"
pj:Items="@array/entries"
pj:Names="@array/names"
pj:SelectedItem="0"
android:animationDuration="200"
/>
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />
</LinearLayout>
このコードでは、イメージビューを使用してロゴを表示していますが、機能していません。
更新された xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:pj="http://schemas.android.com/apk/res/com.globems.main"
xmlns:bm="com.carousel.main"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background ="@drawable/blue3"
>
<RelativeLayout
android:layout_weight="0.5"
android:padding="5dip"
android:gravity="top"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<com.globems.controls.Carousel
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/carousel"
pj:UseReflection="true"
pj:Items="@array/entries"
pj:Names="@array/names"
pj:SelectedItem="0"
android:animationDuration="200"
/>
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"
android:centerinHorizontal="true"
/>
</RelativeLayout>
</RelativeLayout>