一、說(shuō)明
公司主營(yíng)業(yè)務(wù):網(wǎng)站設(shè)計(jì)、成都網(wǎng)站設(shè)計(jì)、移動(dòng)網(wǎng)站開發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競(jìng)爭(zhēng)能力。成都創(chuàng)新互聯(lián)是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對(duì)我們的高要求,感謝他們從不同領(lǐng)域給我們帶來(lái)的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶帶來(lái)驚喜。成都創(chuàng)新互聯(lián)推出大冶免費(fèi)做網(wǎng)站回饋大家。
添加視圖文件的時(shí)候有兩種方式:1、通過(guò)在xml文件定義layout;2、java代碼編寫
二、前言說(shuō)明
1.構(gòu)造xml文件
2.LayoutInflater
提到addview,首先要了解一下LayoutInflater類。這個(gè)類最主要的功能就是實(shí)現(xiàn)將xml表述的layout轉(zhuǎn)化為View的功能。為了便于理解,我們可以將它與findViewById()作一比較,二者都是實(shí)例化某一對(duì)象,不同的是findViewById()是找xml布局文件下的具體widget控件實(shí)例化,而LayoutInflater找res/layout/下的xml布局文件來(lái)實(shí)例化的。
(1)創(chuàng)建
LayoutInflater inflater=(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);或
LayoutInflater inflater = LayoutInflater.from(Activity.this);或
LayoutInflater inflater = getLayoutInflater();
這三種方法本質(zhì)是相同的。
(2)inflate()
用LayoutInflater.inflate() 將LayOut文件轉(zhuǎn)化成VIew。
View view = inflater.inflate(R.layout.block_gym_album_list_item, null);
3.添加視圖文件
三、步驟
1、通過(guò)在xml文件定義layout(block_gym_album_list_item.xml)
activity_dynamic
3、MainActivity
package com.gxtag.gym.ui; import android.app.Activity; import android.content.Context; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.View.OnClickListener; import android.view.ViewGroup; import android.widget.LinearLayout; import android.widget.LinearLayout.LayoutParams; import android.widget.TextView; import com.gxtag.gym.R; import com.icq.app.widget.StatedButton; public class MainActivityextends Activity implements OnClickListener{ private Context mContext; private TextView mTv_title; private String title = "動(dòng)態(tài)添加布局"; private StatedButton mSbtn_back; private LinearLayout mLl_parent; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_dynamic); mContext=this; initView(); mLl_parent.addView(addView1()); mLl_parent.addView(addView2()); } private void initView() { // TODO 初始化視圖 mLl_parent=(LinearLayout) findViewById(R.id.ll_parent); mTv_title = (TextView) findViewById(R.id.tv_title); mTv_title.setText(String.format(String.format( getResources().getString(R.string.title), title))); mSbtn_back = (StatedButton) findViewById(R.id.sbtn_navback); mSbtn_back.setOnClickListener(this); } private View addView1() { // TODO 動(dòng)態(tài)添加布局(xml方式) LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams( LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT); //LayoutInflater inflater1=(LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE); // LayoutInflater inflater2 = getLayoutInflater(); LayoutInflater inflater3 = LayoutInflater.from(mContext); View view = inflater3.inflate(R.layout.block_gym_album_list_item, null); view.setLayoutParams(lp); return view; } private View addView2() { // TODO 動(dòng)態(tài)添加布局(java方式) LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams( LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT); LinearLayout view = new LinearLayout(this); view.setLayoutParams(lp);//設(shè)置布局參數(shù) view.setOrientation(LinearLayout.HORIZONTAL);// 設(shè)置子View的Linearlayout// 為垂直方向布局 //定義子View中兩個(gè)元素的布局 ViewGroup.LayoutParams vlp = new ViewGroup.LayoutParams( ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); ViewGroup.LayoutParams vlp2 = new ViewGroup.LayoutParams( ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); TextView tv1 = new TextView(this); TextView tv2 = new TextView(this); tv1.setLayoutParams(vlp);//設(shè)置TextView的布局 tv2.setLayoutParams(vlp2); tv1.setText("姓名:"); tv2.setText("李四"); tv2.setPadding(calculateDpToPx(50), 0, 0, 0);//設(shè)置邊距 view.addView(tv1);//將TextView 添加到子View 中 view.addView(tv2);//將TextView 添加到子View 中 return view; } private int calculateDpToPx(int padding_in_dp){ final float scale = getResources().getDisplayMetrics().density; return (int) (padding_in_dp * scale + 0.5f); } @Override public void onClick(View v) { // TODO 控件單擊事件 switch (v.getId()) { case R.id.sbtn_navback: this.finish(); break; default: break; } } }
以上這篇基于Android在布局中動(dòng)態(tài)添加view的兩種方法(總結(jié))就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持創(chuàng)新互聯(lián)。