如何在child-listview中管理我的文本?

时间:2015-02-21 18:30:03

标签: java android

在我的应用程序中,我有一个listview,我的child-listview包含一个ImageButton和一个Textview。 我有两个问题: 第一个问题是我的textview的文本出现在Imageview后面。它没有显示整个文本,因为文本的一部分在图像按钮后面。 第二个是,尽管我使用了margintop,但我的图像按钮根本不动。我想将它移到我的列表项的中心。

enter code here

<RelativeLayout 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:id="@+id/lineItem"
android:background="#ffffff"
android:orientation="horizontal"
tools:context="com.example.articalonlistiner.MainActivity$PlaceholderFragment" >

<ImageButton
    android:id="@+id/childButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:background="@drawable/share" />
<TextView
        android:id="@+id/childTextView"
        android:layout_width="wrap_content"
        android:textSize="18sp"
        android:textColor="@android:color/black"
        android:layout_height="match_parent"
        android:layout_alignParentRight="true"
        android:gravity="right"
        />

有没有人建议任何方式?

1 个答案:

答案 0 :(得分:0)

1)使用这个:android:layout_toRightOf =“@ + id / childButton”

示例代码:

<RelativeLayout 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:id="@+id/lineItem"
    android:background="#ffffff"
    android:orientation="horizontal"
    tools:context="com.example.articalonlistiner.MainActivity$PlaceholderFragment">

    <ImageButton
        android:id="@+id/childButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:background="@drawable/ic_drawer_map" />

    <TextView
        android:id="@+id/childTextView"
        android:layout_width="match_parent"
        android:textSize="18sp"
        android:textColor="@android:color/black"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:text="sample text ..."
        android:gravity="right"
        android:layout_toRightOf="@+id/childButton" />

</RelativeLayout>

2)使用android:layout_centerVertical =“true”