将SeekBar放在Android的Imageview上?

时间:2009-12-16 18:28:56

标签: android

问候,

我在Android中有以下布局。我正在努力使搜索栏显示在图像的顶部(我有一些代码使其可见和不可见(或者更确切地说是GONE)。

我想知道是否有人能告诉我如何定位它以使搜索栏越过图像视图,因此允许图像视图占据整个屏幕。

由于

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<.imageOverlay android:id="@+id/surface"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="center" />

<RelativeLayout
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
>

<SeekBar
 android:id="@+id/seekbar"
 android:layout_width="100px"
 android:layout_height="wrap_content"
 android:layout_gravity="center_horizontal"
 android:max="255"/>

<ImageView
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:id="@+id/surfaceimage"
 android:scaleType="fitXY"
  />

1 个答案:

答案 0 :(得分:3)

使用以下内容 - 我添加了framelayout而不是linearlayout。

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<.imageOverlay android:id="@+id/surface"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="center" />


<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
 android:id="@+id/surfaceimage"
 android:scaleType="fitXY"
  />
  <SeekBar
android:id="@+id/seekbar"
android:layout_width="100px"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:max="255"/>


</FrameLayout>
</RelativeLayout>