这是activity_main.xml。我无法通过添加 paddingTop、paddingBottom 来更改填充。我应该怎么做才能改变填充。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:paddingBottom="3dp"
android:paddingLeft="3dp"
android:paddingRight="3dp"
android:paddingTop="3dp"
tools:context=".MainActivity" >
<EditText
android:id="@+id/et_word_search"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="0dp"
android:ems="10" >
</EditText>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/et_word_search"
android:layout_below="@+id/et_word_search" >
</ListView>
</LinearLayout>
这是 selected_word.xml,其中包括 3 个文本视图。这些文本视图出现在列表视图中。
<?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="wrap_content"
android:orientation="horizontal" >
<TextView
android:id="@+id/tv_selected_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="0dp"
android:text="Selected name"
android:background="@drawable/back"
/>
<TextView
android:id="@+id/tv_selected_desc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/tv_selected_cost"
android:layout_margin="0dp"
android:layout_marginTop="85dp"
android:text="Selected description"
android:background="@drawable/back"
/>
<TextView
android:id="@+id/tv_selected_cost"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:text="Selected Cost"
android:textColor="#FF0000"
android:background="@drawable/back"
/>
</RelativeLayout>