我的应用程序中有一个滑块,在按钮点击时从左向右滑动。抽屉的xml代码为:
<?xml version="1.0" encoding="utf-8"?>
<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:background="@drawable/pic4" >
<com.facebook.android.LoginButton
android:id="@+id/login"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_margin="30dp"
android:src="@drawable/login_button"
/>
<TextView
android:id="@+id/txt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="@string/hello"
android:textColor="@drawable/black" />
<com.facebook.android.TransparentPanel
android:id="@+id/popup_window"
android:layout_width="250dp"
android:layout_height="485dp"
android:layout_alignParentLeft="false"
android:background="@drawable/black"
android:gravity="left"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:showDividers="middle" >
<ListView
android:id="@+id/listView1"
android:layout_width="fill_parent"
android:layout_height="378dp" >
</ListView>
</LinearLayout>
</com.facebook.android.TransparentPanel>
<Button
android:id="@+id/show_popup_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/nextnew" />
图形布局完美地显示了滑块,但唯一的问题是抽屉中还显示了作为边框的白线。我想让它消失或变成黑色。 任何提示将不胜感激。谢谢