我想附加2圖像 第1個在左下角和其他在右下角 但我希望圖像是硬核在底部,這樣,如果我滾動頁面的圖像應保持在同一個地方 感謝如何獲得2圖像附加2佈局botton
回答
動態,我是成功的回答我的問題,以便即時特此將代碼爲所有用戶和它的作品所以甲肝e代碼並享受
LinearLayout llMain=new LinearLayout(this);
llMain.setOrientation(LinearLayout.VERTICAL);
llMain.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT));
llMain.setBackgroundColor(Color.WHITE);
LinearLayout llLsView=new LinearLayout(this);
llLsView.setOrientation(LinearLayout.VERTICAL);
llLsView.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT,1.0F));
//llLsView.setPadding(0,0,0,20);
LinearLayout llImage=new LinearLayout(this);
llImage.setOrientation(LinearLayout.HORIZONTAL);
llImage.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT));
llImage.setBackgroundColor(Color.BLACK);
LinearLayout llHome=new LinearLayout(this);
//llHome.setOrientation(LinearLayout.HORIZONTAL);
llHome.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.FILL_PARENT,0.5F));
llHome.setPadding(0,0,5,0);
llHome.setGravity(Gravity.RIGHT);
ImageView imgHome=new ImageView(this);
imgHome.setImageResource(R.drawable.home);
llHome.addView(imgHome);
LinearLayout llBack=new LinearLayout(this);
//llBack.setOrientation(LinearLayout.HORIZONTAL);
llBack.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.FILL_PARENT,0.5F));
llBack.setPadding(5,0,0,0);
llBack.setGravity(Gravity.LEFT);
ImageView imgBack=new ImageView(this);
imgBack.setImageResource(R.drawable.back);
llBack.addView(imgBack);
llImage.addView(llBack);
llImage.addView(llHome);
llMain.addView(llLsView);
llMain.addView(llImage);
setContentView(llMain);
+1漂亮精湛的作品! –
喜歡的東西:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:id="@+id/nvContent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/icon"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true" />
<ImageView
android:id="@+id/nvContent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/icon"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true" />
</RelativeLayout>
我想在java代碼中動態地繪製它 –
@RaghavChopra你應該早些提到,這完全是浪費時間。提問時請小心。 –
將kep dat記在 –
<RelativeLayout >
<ScrollView >
</scrollView>
<RelativeLayout android:layout_alighParentBottom=true abdroid:[email protected]/transparnt">
<Button >
</Button >
<Button android:layout_alighParentRight=true>
</Button >
<RelativeLayout >
</RelativeLayout >
我想動態地繪製cn cn幫我用java代碼 –
- 1. 如何用2列獲得此佈局?
- 2. 使2列的div佈局表現得像一個2列的表格佈局
- 3. 在佈局中組合2個圖像
- 4. 如何在Ionic 2中獲得響應式網格佈局
- 5. 如何使用Twitter Bootstrap 2獲得16列響應式佈局?
- 6. Enyo 2 - 帆布如何獲得Contex的
- 7. 如何獲得此佈局如圖圖像
- 8. 2列布局
- 9. 如何從Bootstrap的botton獲得價值?
- 10. 在Galaxy Tab 2上加載圖像時的佈局問題
- 11. 如何在android中創建佈局(請參閱附加圖像)
- 12. 如何使用Google地圖獲取2列布局?
- 13. 如何獲得離子2角2
- 14. 對齊2線性佈局和圖像視圖裏面相對佈局
- 15. 如何獲得此佈局?
- 16. 如何獲得此佈局?
- 17. 如何獲得此佈局?
- 18. 在2列布局
- 19. CSS 2列布局
- 20. 2列DIV佈局
- 21. 如何延遲添加布局圖像?
- 22. 如何獲得2-Sat值
- 23. 如何獲得2線
- 24. CakePHP3如何使用2默認佈局
- 25. Android:如何使用2佈局
- 26. 如何鏈接2佈局與按鈕
- 27. 如何保存附加到全局數組的數據swift 2
- 28. 如何獲得與HTML5畫布圖像
- 29. Flexbox 2/1/2佈局兒童
- 30. 製作4塊佈局(2疊加)
發佈您現有的佈局代碼。 –
我想動態地添加我的佈局 –