你有没有注意到安卓线性布局有1px透明板?我有一个嵌套在另一个relatevielayout中的linearlayout。并且,线性布局与其父项的底部对齐。不过,我仍然可以得到1px透明边界下的线性布局。这是照片
我怎样才能去掉边界?这是我的密码。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="@color/gray"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
  android:id="@+id/llFooter"
  android:layout_alignParentBottom="true"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  style="@style/st_record_bar">
  <ToggleButton
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:background="@drawable/btn_record_big_selector"
     android:textOn=""
     android:textOff="" />
</LinearLayout>
</RelativeLayout>

@style/st_记录栏定义为
<style name="st_record_bar">
  <item name="android:gravity">center_vertical|center_horizontal|center</item>
  <item name="android:padding">15dip</item>
  <item name="android:background">@drawable/bg_record_bar</item>
</style>

最佳答案

像这样改变

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
   xmlns:android="http://schemas.android.com/apk/res/android"
   android:orientation="vertical"
   android:background="@color/gray"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent">
<LinearLayout
   android:id="@+id/llFooter"
   android:layout_alignParentBottom="true"
   android:layout_width="fill_parent"
   android:layout_height="wrap_content">
<ToggleButton
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"

   android:textOn=""
   android:textOff="" />
  </LinearLayout>
</RelativeLayout>

07-24 15:52