我已尝试更改活动中每个项目的边距设置,但此问题仍然存在:
显然我没有发布图片所需的代表,所以在这里截图:https ://picasaweb.google.com/lh/photo/i5VUcPbVGwxOLc8TEjedKf71rd-Gd83gxbHnJBkd_MY?feat=directlink
搜索栏的拇指部分浮在进度部分上方。这是 XML:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="85dp"
android:layout_marginTop="15dp"
android:orientation="vertical" >
<Spinner
android:id="@+id/spinner1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginBottom="25dp"
android:layout_weight="1" />
<TextView
android:id="@+id/kessilBrightText"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:text="Brightness"
android:textSize="@dimen/LargeText" />
<SeekBar
android:id="@+id/kessilBrightSeek"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_below="@+id/kessilBrightText"
android:layout_weight="1" />
<TextView
android:id="@+id/kessilColorText"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:text="Color"
android:textSize="@dimen/LargeText" />
<SeekBar
android:id="@+id/kessilColorSeek"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" >
<Button
android:id="@+id/showSettings"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_margin="10dp"
android:layout_weight="1"
android:background="@drawable/btn_blue_outline"
android:onClick="showSettings"
android:text="Settings" />
<Button
android:id="@+id/playButton"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_margin="10dp"
android:layout_weight="3"
android:background="@drawable/btn_blue_outline"
android:onClick="playorstopScene"
android:text="Play Scene" />
</LinearLayout>
</LinearLayout>
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:src="@drawable/logo_bg" />
<com.pheelicks.visualizer.VisualizerView
android:id="@+id/visualizerView"
android:layout_width="100dp"
android:layout_height="75dp"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true" />
任何人都可以为此提供解决方案吗?我曾多次尝试在 Eclipse 中清理和重建项目。谢谢