您好我正在尝试Android而且我是WP c#开发人员。因此将图像设置到屏幕的底部中间时出现问题。在WP中,对我来说很容易。所以我在这里尝试了: -
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:src="@android:drawable/ic_menu_gallery"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/appLogo" />
</LinearLayout>
在WP中,我只是在网格中进行设置并设置VerticalAlignment = Bottom并完成。
我的心态现在还没有为Android设置,所以很抱歉这个非常基本的问题。 任何帮助和指针都非常感激:)
答案 0 :(得分:1)
您可能必须将其放在RelativeLayout中,然后在ImageView上使用android:layout_alignParentBottom="true"
。像这样:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android:src="@android:drawable/ic_menu_gallery"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:id="@+id/appLogo" />
</RelativeLayout>