我想在Android的創造是這樣的:如何使用%?在LinearLayout上放置ImageView?
我目前的做法是設法創建一個LinearLayout中,並用不同的權重的一些看法吧。這工作得很好:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/market_bar"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.2"
android:background="@android:color/holo_red_light"/>
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.8"
android:background="@android:color/holo_green_dark"/>
</LinearLayout>
</LinearLayout>
</RelativeLayout>
但現在如何添加圖像中出現的標記?我不認爲我可以用重量來實現這一點。例如,如何將標記放置在條的最後?
謝謝
使用farmelayout你的基地佈局。 – 2014-11-03 23:31:02