如何在列表视图中放置图像然后右侧?

时间:2016-08-26 10:26:30

标签: android listview

Image of My Layout

enter image description here

我正在查看包含图片的列表视图。但图像显示在左侧如何将图像放在右侧并改变其大小...

我的XML代码是..

$ cap deploy:rollback ROLLBACK_RELEASE=20160614133327

我的Mainactivity.java代码是......

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<ImageView
    android:id="@+id/icon"
    android:layout_width="50dp"
    android:layout_height="50dp"
    android:layout_marginBottom="5dp"
    android:layout_marginLeft="5dp"
    android:layout_marginRight="5dp"
    android:layout_marginTop="5dp"
    android:src="@drawable/album1" />
<TextView
    android:id="@+id/Itemname"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="20sp" 
    android:paddingTop="5dp"/>

3 个答案:

答案 0 :(得分:1)

按照以下方式交换视图

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/Itemname"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20sp"
        android:layout_gravity="center"
        android:text="asdas"
        android:layout_weight="0.9"
        android:paddingTop="5dp"/>

    <ImageView
        android:id="@+id/icon"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:gravity="right"
        android:layout_gravity="center"
        android:layout_marginBottom="5dp"
        android:layout_marginLeft="5dp"
        android:layout_marginRight="5dp"
        android:layout_marginTop="5dp"
        android:src="@drawable/case_card" />

</LinearLayout>

答案 1 :(得分:0)

android:layout_gravity="right"用于imageview,将android:layout_gravity="left"用于textview。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal" >



    <TextView
        android:id="@+id/Itemname"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20sp"
        android:text="Text"
        android:layout_weight="1"
        android:layout_gravity="left"
        android:paddingTop="5dp"/>

    <ImageView
        android:id="@+id/icon"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_marginBottom="5dp"
        android:layout_marginLeft="5dp"
        android:layout_marginRight="5dp"
        android:layout_gravity="end"
        android:layout_marginTop="5dp"
        android:src="@drawable/accessdenied" />

    </LinearLayout>

答案 2 :(得分:0)

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >

<ImageView
  android:id="@+id/icon"
  android:layout_alignParentEnd="true"
  android:layout_width="50dp"
  android:layout_height="50dp"
  android:layout_marginBottom="5dp"
  android:layout_marginLeft="5dp"
  android:layout_marginRight="5dp"
  android:layout_marginTop="5dp"
  android:src="@drawable/album1" />
<TextView
  android:id="@+id/Itemname"
  android:layout_alignParentStart="true"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:textSize="20sp" 
  android:paddingTop="5dp"/>

</RelativeLayout>

或者您可以在LinearLayout中交换视图

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >

<TextView
android:id="@+id/Itemname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp" 
android:paddingTop="5dp"/>

<ImageView
android:id="@+id/icon"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_marginBottom="5dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:layout_marginTop="5dp"
android:src="@drawable/album1" />

</LinearLayout>