0
A
回答
1
您必須使用自己的佈局實現自定義listView適配器。在那裏,您可以根據自己的喜好輕鬆設計行的佈局。
你可以閱讀更多關於如何做到這裏實現這個:http://www.vogella.com/articles/AndroidListView/article.html
0
創建列表視圖項新的佈局,並與android.R.layout.simple_list_item_1
更換。以下佈局僅供Textview
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:inputType="text"
android:padding="10dp"
android:textColor="@android:color/black"
android:typeface="serif" >
</TextView>
0
如何更改項目的寬度和與XML的高度。
的ListView可以用兩個因素
- 使用自定義適配器
- 使用一個簡單的適配器
,如果您使用的是自定義適配器來創建,您可以指定自己的XML您可以在其中更改項目的高度和寬度的佈局。
例如,列表項目佈局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/tv_row_addItem_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceMedium" />
</RelativeLayout> //here you can do whatever you want with your item
的XML更具體THIS是一個很好的解釋
相關問題
- 1. 如何更改android中listviews項的寬度和高度?
- 2. 如何更改ImageView高度和寬度
- 3. 如何更改Android中Button的寬度和高度
- 4. 如何更改高度和寬度QTabWidget選項卡
- 5. android如何更改<item>寬度和高度
- 6. 更改圖像的寬度和高度
- 7. 更改圖像的高度和寬度
- 8. 更改寬度/高度值
- 9. 更改SWF寬度/高度
- 10. 在android中運行時更改ImageButton的寬度和高度
- 11. 在Android中,如何設置ListView項目的高度和寬度?
- 12. 如何更改ggplotly的寬度和高度?有沒有簡單的方法來改變寬度和高度?
- 13. 如何更改curlView中的高度和寬度?
- 14. 如何更改離子中模態的高度和寬度3
- 15. 如何動態更改iOS中視圖的高度和寬度?
- 16. 如何更改easeljs中的位圖寬度和高度?
- 17. 如何更改BIRT中母版頁的高度和寬度?
- 18. CSS更改元素高度和寬度
- 19. 更改寬度和高度使用jQuery
- 20. 更改字體高度和寬度
- 21. 如何更改iphone中UISearchBar的UiSearchbar高度,寬度,顏色和Uitextfield高度?
- 22. Android WebView寬度和高度
- 23. TTStyledTextLabel如何更改方向更改的寬度/高度?
- 24. 如何在android中運行時更改線性佈局的寬度和高度?
- 25. 如何在android中動態更改視圖的寬度和高度?
- 26. Android:定位更改後的寬度和視圖高度
- 27. 跨度高度寬度無法更改
- 28. Javascript如何更改圖像的高度和寬度src
- 29. 如何更改相機視圖(UIImagePickerViewController)iOS的高度和寬度?
- 30. 如何更改JTextField的寬度和高度?
在執行此操作在適配器中的'getView()'。 – hardartcore
@ Android-Developer - > in xml ?? –
如果您在適配器類中爲其添加新佈局,則只能更改一個項目的寬度/高度。你不能在xml中自動執行該操作。 – hardartcore