這兩個button
在下面的代碼中被設置爲wrap_content
並且沒有填充。但是,垂直方向仍然有一些填充。如果我將android:layout_height
設置爲固定參數,則填充可能會消失。但我確實想使用wrap_content
而不是固定的高度。wrap_content在LinearLayout中不起作用
編輯: 現在,我不得不使用DIP,不建議這樣做,因爲文字大小,以確保在按鈕上的文本,而在DIP使用固定的高度。期待更好的解決方案!
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginBottom="5dp">
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1.0"
android:layout_marginLeft="5dp"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/account_balance"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/tvBa"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#00000000"
android:src="@drawable/video_list_price"/>
</LinearLayout>
</LinearLayout>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/record_selector"
android:gravity="center"
android:textColor="#ffffffff"
android:text="@string/charge_record"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:background="@drawable/charge_selector"
android:gravity="center"
android:textColor="#ffffffff"
android:text="@string/charge"/>
</LinearLayout>
那麼RightNow公司必須使用高度wrapcontent ......,那麼你想要什麼? – rajshree
你在哪裏得到一些填充..你可以發佈快照 – Sush
是的,我正在使用wrap_content。但是,在給予wrap_content之後,我在按鈕 – ZhangLei