我正在開發Android項目,我必須展示一個動態列表。每個列表項目包含3個文本視圖。android:layout_weight屬性根據文本長度變化
我的問題是,列表不以正確的格式顯示。 weight屬性動態變化。
請看屏幕截圖。
變化百分比值(0.14,0.01,-1.2)不是垂直直線的,它們呈鋸齒形。
我想要所有的公司值,更改%值和LTP值應該是垂直相同的順序。
我的代碼:這給了適配器
<?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:orientation="vertical" >
<LinearLayout
android:id="@+id/custLayout"
android:layout_height="50dp"
android:layout_width="fill_parent">
<TextView
android:id="@+id/symbol_list"
android:layout_width="70dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:text="Symbol"
android:layout_weight="1"
android:textColor="#FFFFFF"
android:textSize="13dp" />
<TextView
android:id="@+id/persent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:gravity="center"
android:text="Chang"
android:layout_weight="0.5"
android:textColor="#FFFFFF"
android:textSize="13dp" />
<TextView
android:id="@+id/ltp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_gravity="center_vertical"
android:gravity="center|right"
android:layout_marginRight="15dp"
android:text="ltp"
android:layout_weight="0.5"
android:textColor="#FFFFFF"
android:textSize="13dp" />
</LinearLayout>
</LinearLayout>
請幫助佈局。
謝謝你,它工作。我需要先學習基礎知識。 – user2085965