5

我尝试了很多方法来实现下面的例子,但我不能让它普遍工作。

我已经完成了以下屏幕的构建。我已经向右对齐并垂直居中。并给予一定的余量。

在此处输入图像描述

我的问题是我必须为此添加onpressed状态,并且我需要添加一个循环进度,如下图所示。

在此处输入图像描述

我不知道如何在那个特定的地方实施这种循环进展。我尝试从左中心垂直实现进度并给出一些边距并修复它。但是当我将它安装在大屏幕上时,对齐会出错。所以我尝试从右中心垂直实现它,并为那个圆圈留出余量。但即使这样也没有用。

请有人帮助我,如何解决这个问题:(

我被这个震惊了一个多星期:(

编辑: XML 代码:

<ProgressBar
        android:id="@+id/ProgressBar01"
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:background="@drawable/circular_progress"
        android:layout_marginRight="185dp"
        android:progress="50" />

    <ImageButton
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:background="@null"
        android:src="@drawable/tap_to_capture" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:text="@string/tap_to_cap"
        android:textSize="12sp"
        android:textColor="#006666"
        android:layout_marginRight="25dp"
        android:textAppearance="?android:attr/textAppearanceSmall" />
4

1 回答 1

1

我已经使用了一个示例 XML 布局来获得您正在寻找的类似效果。看看这个截图和代码。

布局截图

下面粘贴实现布局的XML。显然,您可以随意设置它的样式。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <RelativeLayout
        android:id="@+id/RelativeLayoutLeftButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

        <ProgressBar
            android:id="@+id/progressBar1"
            style="?android:attr/progressBarStyleLarge"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true" />

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:background="@android:color/transparent"
            android:src="@drawable/ic_play" />
    </RelativeLayout>

    <TextView
        android:id="@+id/textView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_toRightOf="@+id/RelativeLayoutLeftButton"
        android:text="Click Here"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:textColor="#006666"
        android:textSize="12sp" />

</RelativeLayout>
于 2012-08-25T14:33:57.250 回答