我有一個線性佈局,其中包含10個圖像(例如啤酒杯)5在上排和5在第二排,但我想動態顯示這些圖像,就像我們從服務器獲得3值上排顯示兩個啤酒杯,中間也顯示兩個啤酒杯,第三個杯子顯示在第二排也顯示在中間。 同樣,如果我們從服務器獲得7個值,那麼將在上排顯示4個杯子,在第二排顯示3個杯子。在佈局中動態顯示圖像
0
A
回答
0
我認爲你正在尋找這樣的東西。
import java.util.Random;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.app.Activity;
import android.content.Context;
public class MainActivity extends Activity {
private Context context = null;
private Button btnUpdate = null;
private LinearLayout firstRow = null;
private LinearLayout secondRow = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
this.context = this;
this.firstRow = (LinearLayout) this
.findViewById(R.id.ac_main__firstrow);
this.secondRow = (LinearLayout) this
.findViewById(R.id.ac_main__secondrow);
this.btnUpdate = (Button) this.findViewById(R.id.ac_main__updatebtn);
this.btnUpdate.setOnClickListener(onClickUpdateRow);
}
// I used this mothods only because i don't have a server that give me the value
private int generateRandomInt() {
Random rdm = new Random();
return rdm.nextInt(9);
}
// Generate a new ImageView
private ImageView generateImageView() {
ImageView beerIcon = new ImageView(this.context);
//Custumize this with your drawable
beerIcon.setImageDrawable(this.getResources().getDrawable(R.drawable.ic_launcher));
return beerIcon;
}
private void updateImageRow() {
int rdmValue = this.generateRandomInt();
int rowOneImageNumber = rdmValue/2;
int rowTwoImageNumber = rdmValue - rowOneImageNumber;
this.firstRow.removeAllViewsInLayout();
this.secondRow.removeAllViewsInLayout();
if (rowOneImageNumber >= rowTwoImageNumber) {
for (int i = 0; i <= rowOneImageNumber; i++) {
this.firstRow.addView(this.generateImageView());
}
for (int i = 0; i <= rowTwoImageNumber; i++) {
this.secondRow.addView(this.generateImageView());
}
} else {
for (int i = 0; i <= rowTwoImageNumber; i++) {
this.firstRow.addView(this.generateImageView());
}
for (int i = 0; i <= rowOneImageNumber; i++) {
this.secondRow.addView(this.generateImageView());
}
}
}
private OnClickListener onClickUpdateRow = new OnClickListener() {
@Override
public void onClick(View arg0) {
updateImageRow();
}
};
而且actvity_main.xml
是這樣的:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/ac_main__firstrow"
android:layout_width="fill_parent"
android:layout_height="60dp"
android:orientation="horizontal" >
</LinearLayout>
<LinearLayout
android:id="@+id/ac_main__secondrow"
android:layout_width="fill_parent"
android:layout_height="60dp"
android:orientation="horizontal">
</LinearLayout>
<Button
android:id="@+id/ac_main__updatebtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Update" />
<!-- other layout element -->
</LinearLayout>
希望這把你在正確的方向。
相關問題
- 1. 動態iOS佈局圖像
- 2. 隱藏並顯示點擊動態圖像的佈局
- 3. 在佈局上顯示圖像
- 4. 在Tableau中動態顯示圖像
- 5. 固定顯示動態佈局
- 6. 動態創建佈局不顯示
- 7. GridView項目佈局不顯示圖像
- 8. Android GridMenu佈局 - 圖像未顯示
- 9. 動態創建的圖像佈局
- 10. 在1個活動中動態顯示2個佈局
- 11. 動態顯示圖像
- 12. Android動態顯示圖像
- 13. 圖像未動態顯示
- 14. 動態圖像顯示
- 15. Android佈局/視圖顯示滑動圖像
- 16. android佈局 - 滾動視圖不顯示
- 17. 在表格佈局中顯示動態行的問題:Android
- 18. 在Symfony佈局中動態顯示信息
- 19. 黑莓 - 如何顯示動態表佈局視圖
- 20. 動態顯示D3中的圖像
- 21. 動態圖像不顯示在TCPDF
- 22. 在DraggableGridView中顯示佈局
- 23. 我可以在自定義佈局中顯示圖像嗎?
- 24. 如何在laravel的電子郵件佈局中顯示圖像?
- 25. 如何在Orchard 1.7中使用投影佈局顯示圖像?
- 26. 活動佈局不顯示
- 27. 如何在c中動態顯示圖像圖像#
- 28. Android:ListView xml佈局不滾動時顯示背景圖像
- 29. 在ScrollViewer中用於動態網格圖像的佈局
- 30. 如何在圓形佈局中動態修復圖像?
使用GridView與android:numColumns =「auto_fit」 –
同樣的事情,我正在實施.... –
那麼你想從我們這裏得到什麼樣的幫助? – Goofy