我的应用程序中有一个滑块,在单击按钮时从左向右滑动。抽屉的 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" />
图形布局完美地显示了滑块,但唯一的问题是抽屉也显示了一条白线作为边框。我希望它消失或变成黑色。任何提示将不胜感激。谢谢