我正在嘗試在屏幕的左上角放置進度條。但是,我不太確定哪種方式是最好的方法。我應該以編程方式創建一個進度條,而不是在xml中創建它?或者我應該改變我的佈局?謝謝。下面的XML。Android - 在左上角顯示進度條
XML代碼:佈局,當你想在特定區域定位的觀點是FrameLayout
或RelativeLayout
RelativeLayout
將讓你每個視圖相對放置彼此
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
android:focusableInTouchMode="true"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="53dp"
android:layout_marginBottom="5dp"
android:src="@raw/topbar" />
<TextView
android:id="@+id/search_nameOfFeed"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical|center_horizontal"
android:text="Event Name"
android:textColor="@color/black"
android:textSize="18sp" >
</TextView>
<ListView
android:id="@+id/searchfeed_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="0.83"
android:dividerHeight="10.0sp"
android:fadingEdge="none"
android:stackFromBottom="false"
android:transcriptMode="normal" >
</ListView>
</LinearLayout>