-1

Android 2.3.3 (api v10) を使用して Android アプリケーションを作成しています

次のプロパティを持つ LinearLayout を使用して記述されたメニューがあります。

android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"

ページの右下隅に小さなロゴを固定したい。それは可能ですか?もしそうなら、どのように?

ありがとう!

クフィル

4

1 に答える 1

1

これには RelativeLayout を使用できます

<RelativeLayout ....>
<LinerLayot
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:layout_alignParentTop="true"
android:id="@+id/layout"
>

.
.   // your elements
.
</LinerLayout>
<ImageView
src="your logo"
android:layout_below="@+id/layout"
 android:layout_alignParentBottom="true"
/>
</RelaytiveLayout>
于 2012-12-16T10:53:31.087 に答える