1

我正在编写一个允许用户访问其公司语音邮件系统的应用程序。the voice mails are displayed in a list view and when one is selected they are given a menu. 当用户选择“收听”时,我希望在现有 ListView 顶部的屏幕底部弹出一个小型媒体播放器(类似于软键盘在需要时出现,然后在完成时消失)。

选项?

4

1 回答 1

4

将您的所有视图(即:您的 ListView)添加到 RelativeLayout 将您的媒体播放器布局元素放在底部并将它们的可见性设置为消失。

<RelativeLayout
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  >

  <ListView
    android:id="@android:id/list"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    />

  <RelativeLayout
    android:id="@+id/mediaPopup"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true" 
    android:visibility="gone"
    >
    <TextView
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:text="I am a media player!"
      />
  </RelativeLayout>

</RelativeLayout>

然后在您的活动课程中,您可以像这样在您的视图上制作动画:

function void showMediaPlayer() {

  if(mMediaPopUp.getVisibility() == View.GONE) {

    // Show Media Player
    TranslateAnimation mAnimUp = 
      new TranslateAnimation(
        Animation.RELATIVE_TO_SELF, 
        0, 
        Animation.RELATIVE_TO_SELF, 
        0, 
        Animation.RELATIVE_TO_SELF, 
        -(mMediaPopUp.getHeight()), 
        Animation.RELATIVE_TO_SELF, 
        0);

    mAnimUp.setStartOffset(500);
    mAnimUp.setDuration(500);

    mMediaPopUp.setVisibility(View.VISIBLE);
    mMediaPopUp.setAnimation(mAnimUp);

  }
}
于 2010-06-03T15:14:12.933 回答