0
A
回答
1
我將與ImageView的寬度match_parent工作你需要改變寬度
<TableLayout
android:id="@+id/t1"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
app:srcCompat="@drawable/qr"/>
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
app:srcCompat="@drawable/qr"/>
<ImageView
android:id="@+id/imageView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
app:srcCompat="@drawable/qr"/>
<ImageView
android:id="@+id/imageView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
app:srcCompat="@drawable/qr"/>
<ImageView
android:id="@+id/imageView5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
app:srcCompat="@drawable/qr"/>
</TableRow>
</TableLayout>
在XML文件中
也使按鈕與坐的onClick ATTR的按鈕
現在與活動工作做出參數tableLayout
private TableLayout t1;
OnCreate方法準備t1參數
t1 = (TableLayout)findViewById(R.id.t1);
t1.setColumnStretchable(0,true);
t1.setColumnStretchable(1,true);
t1.setColumnStretchable(2,true);
t1.setColumnStretchable(3,true);
t1.setColumnStretchable(4,true);
的onClick方法中 申報的TableRow
//you can declare Context with parameter and used instead of this
TableRow tr = new TableRow(this);
現在我們讓圖像視圖的實例
ImageView img1 = new ImageView(this);
ImageView img2 = new ImageView(this);
ImageView img3 = new ImageView(this);
ImageView img4 = new ImageView(this);
ImageView img5 = new ImageView(this);
現在我們
img1.setImageResource(R.drawable.ic_favorite);
img1.setMaxWidth(50);
img1.setMinimumWidth(30);
img1.setMaxHeight(50);
img1.setMinimumHeight(30);
img1.setForegroundGravity(Gravity.CENTER); // this is work from API23
img2.setImageResource(R.drawable.ic_favorite);
img2.setMaxWidth(50);
img2.setMinimumWidth(30);
img2.setMaxHeight(50);
img2.setMinimumHeight(30);
img2.setForegroundGravity(Gravity.CENTER); // this is work from API23
img3.setImageResource(R.drawable.ic_favorite);
img3.setMaxWidth(50);
img3.setMinimumWidth(30);
img3.setMaxHeight(50);
img3.setMinimumHeight(30);
img3.setForegroundGravity(Gravity.CENTER); // this is work from API23
img4.setImageResource(R.drawable.ic_favorite);
img4.setMaxWidth(50);
img4.setMinimumWidth(30);
img4.setMaxHeight(50);
img4.setMinimumHeight(30);
img4.setForegroundGravity(Gravity.CENTER); // this is work from API23
img5.setImageResource(R.drawable.ic_favorite);
img5.setMaxWidth(50);
img5.setMinimumWidth(30);
img5.setMaxHeight(50);
img5.setMinimumHeight(30);
img5.setForegroundGravity(Gravity.CENTER); // this is work from API23
後置ATTR圖像視圖的實例我們會L個上路的ImageView的划船
tr.addView(img1);
tr.addView(img2);
tr.addView(img3);
tr.addView(img4);
tr.addView(img5);
最後,我們將添加的TableRow到TableLayout
t1.addViwe(tr);
沒有運行該應用程序 當你點擊鏈接,您將添加一行 你可以使用裏面像循環驗證碼for循環或while循環 好運
相關問題
- 1. 如何在tablelayout中動態創建列?
- 2. 如何動態繪製地圖
- 3. 如何在android中動態創建TableLayout?
- 4. 如何在Android中動態定義tablelayout?
- 5. 如何動態地繪製/繪製區間數據與OpenOffice Calc?
- 6. 如何在android jdk中動態地用ImageView填充TableLayout?
- 7. 如何動態地在Java中繪製(星形)拓撲?
- 8. 如何動態地在windows phone中繪製扇區(Quarter Quarter)?
- 9. 如何在android tablelayout中動態設置列的寬度?
- 10. 動態繪製列表框
- 11. 如何根據數據在Highchart中繪製動態系列
- 12. 如何在Rails 3上動態繪製?
- 13. 如何動態地將新元素設置爲TableLayout中的特定列?
- 14. 如何在谷歌地圖上動態繪製多義線
- 15. 如何在谷歌地圖上動態繪製標記
- 16. 如何動態地在MFC SDI上繪製自定義菜單
- 17. 如何在R中正確繪製動態漸進繪圖
- 18. 如何動態地將矩陣的列彼此繪製在一起?
- 19. 如何在WinForms中使用TableLayout在C#.net 4.0中創建動態大小列
- 20. 在TableLayout中動態調用中心ImageView
- 21. 如何在R中繪製二進制狀態時間序列?
- 22. 動態更新TableLayout
- 23. 一個TableLayout動態
- 24. 高效地繪製動態對象
- 25. Xna:繪製動態alpha地圖
- 26. 我如何動態地將行添加到Android SDK的TableLayout?
- 27. 在Silverlight中動態地在畫布上繪製圖像
- 28. 動態設置tablelayout列爲2
- 29. 如何在動態表單中將sqlitedata顯示到tablelayout中
- 30. 在動態TableLayout中的對齊設置
聽起來你應該使用RecyclerView和GridLayoutManager – Budius