这就是我想要实现的目标。
这是布局文件包含的内容。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".SplashActivity" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_weight="9"
android:background="@drawable/woodentile" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/innoluck"
android:src="@drawable/inno_luck_logo" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/name_user" />
<EditText
android:id="@+id/name_input"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="22"
android:inputType="text" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0sp"
android:layout_weight="1"
android:background="@drawable/woodenshadowtile" >
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0sp"
android:layout_weight="2"
android:background="@drawable/papertile" >
</LinearLayout>
</LinearLayout>
这是我最终得到的。
如何更改布局文件以使图像视图更接近顶部?
答案 0 :(得分:0)
这样做:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".SplashActivity" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:background="@drawable/woodentile" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/innoluck"
android:src="@drawable/inno_luck_logo" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/name_user" />
<EditText
android:id="@+id/name_input"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="22"
android:inputType="text" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0sp"
android:layout_weight="1"
android:background="@drawable/woodenshadowtile" >
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0sp"
android:layout_weight="2"
android:background="@drawable/papertile" >
</LinearLayout>
</RelativeLayout>
</LinearLayout>
答案 1 :(得分:0)
我使用了View
代替ImageView
而且它有效。
<View
android:id="@+id/inno_luck_logo"
android:layout_width="310dp"
android:layout_height="162dp"
android:layout_alignParentTop="true"
android:layout_marginLeft="10dp"
android:layout_marginTop="20dp"
android:background="@drawable/inno_luck_logo" />