繁体   English   中英

Android-如何固定图片位置

[英]Android - How to fix position of image

我有一个LinearLayout ,其中有许多文本字段,并且在LinearLayout的右侧有一个ImageView 但是,图像的位置永远不会固定,并且会根据TextView字段的内容而移动。 我该如何解决这个问题? 我试过操纵android:layout_gravity但这没有给我解决方案。 无论TextView的内容如何,​​我都希望自己的图像停靠在右侧。 这是我的布局文件。 任何指针或解决方案将不胜感激。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" 
>

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="144dp"
    android:orientation="vertical"
    android:layout_gravity="left"

 >

    <LinearLayout
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/name_field"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" 
            android:text="@string/name"  />

        <TextView
            android:id="@+id/name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

     </LinearLayout>

    <LinearLayout
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/date_of_birth_field"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" 
            android:text="@string/date_of_birth"  />

        <TextView
            android:id="@+id/date_of_birth"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

     </LinearLayout>

    <LinearLayout
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/place_of_birth_field"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" 
            android:text="@string/place_of_birth"  />

        <TextView
            android:id="@+id/place_of_birth"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

     </LinearLayout>

    <LinearLayout
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/height_field"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" 
            android:text="@string/height"  />

        <TextView
            android:id="@+id/height"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

    </LinearLayout>

    <LinearLayout
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/blood_type_field"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" 
            android:text="@string/blood_type"  />

        <TextView
            android:id="@+id/blood_type"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

     </LinearLayout>

 </LinearLayout>

<ImageView
    android:id="@+id/member_image"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="right"


/>

</LinearLayout>

在最外面的布局中使用RelativeLayout。 您可以将图像设置为在右侧垂直显示。

 <?xml version="1.0" encoding="utf-8"?>
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
               android:layout_width="match_parent"
               android:layout_height="match_parent"
      >

      <LinearLayout
           android:layout_width="wrap_content"
           android:layout_height="144dp"
           android:orientation="vertical"

           >

           <LinearLayout
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:orientation="horizontal" >

                <TextView
                     android:id="@+id/name_field"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     android:text="@string/name"  />

                <TextView
                     android:id="@+id/name"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content" />

           </LinearLayout>

           <LinearLayout
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:orientation="horizontal" >

                <TextView
                     android:id="@+id/date_of_birth_field"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     android:text="@string/date_of_birth"  />

                <TextView
                     android:id="@+id/date_of_birth"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content" />

           </LinearLayout>

           <LinearLayout
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:orientation="horizontal" >

                <TextView
                     android:id="@+id/place_of_birth_field"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     android:text="@string/place_of_birth"  />

                <TextView
                     android:id="@+id/place_of_birth"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content" />

           </LinearLayout>

           <LinearLayout
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:orientation="horizontal" >

                <TextView
                     android:id="@+id/height_field"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     android:text="@string/height"  />

                <TextView
                     android:id="@+id/height"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content" />

           </LinearLayout>

           <LinearLayout
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:orientation="horizontal" >

                <TextView
                     android:id="@+id/blood_type_field"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     android:text="@string/blood_type"  />

                <TextView
                     android:id="@+id/blood_type"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content" />

           </LinearLayout>

      </LinearLayout>

      <ImageView
           android:id="@+id/member_image"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:layout_alignParentRight="true"
           android:layout_centerVertical="true"

           />

 </RelativeLayout>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM