我试图将spinner/progress bar
添加到TextView
的左侧。
________________
| O MY TEXT |
|________________|
O = spinner/progress bar
起初我的想法是添加TextView
并在其上添加ProgressBar
。是否可以在TextView
本身执行此操作?如果不是最好的方法吗?
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/latlongLocation"
android:layout_width="150dp"
android:layout_height="23dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="21dp"
android:background="@drawable/black"
android:gravity="center"
android:singleLine="true"
android:textColor="#202020"
android:textSize="11sp" />
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ProgressBar
android:id="@+id/progressBar1"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>
</RelativeLayout>
答案 0 :(得分:4)
使用FrameLayout。有了它,您可以像卡片堆栈一样放置视图。
小例子:
<!-- Example of parent -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp"
android:orientation="vertical">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/black">
<ProgressBar
style="@android:style/Widget.ProgressBar.Large"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="90dp"
android:layout_marginTop="20dp"
android:textSize="32dp"
android:textColor="@android:color/white"
android:text="Test text"/>
</FrameLayout>
</LinearLayout>
看起来像这样