❶ 安卓如何獲取layout中所有控制項
在實際開發中LayoutInflater這個類還是非常有用的,它的作用類似於findViewById()。不同點是LayoutInflater是用來找res/layout/下的xml布局文件代碼塊,並且實例化;而findViewById()是找xml布局文件下的具體widget控制項(如Button、TextView等)。 具體作用:
1、對於一個沒有被載入或者想要動態載入的界面,都需要使用LayoutInflater.inflate()來載入;
2、對於一個已經載入的界面,就可以使用Activiyt.findViewById()方法來獲得其中的界面元素。
LayoutInflater 是一個抽象類,在文檔中如下聲明:
public abstract class LayoutInflater extends Object
獲得 LayoutInflater 實例的三種方式:
1.LayoutInflater inflater = getLayoutInflater(); //調用Activity的getLayoutInflater()
2.LayoutInflater localinflater =(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
1. LayoutInflater inflater = LayoutInflater.from(context);
其實,這三種方式本質是相同的,從源碼中可以看出:
getLayoutInflater():
Activity 的 getLayoutInflater() 方法是調用 PhoneWindow 的getLayoutInflater()方法,看一下該源代碼:
public PhoneWindow(Context context) {
super(context);
mLayoutInflater = LayoutInflater.from(context);
}
可以看出它其實是調用 LayoutInflater.from(context)。
LayoutInflater.from(context):
public static LayoutInflater from(Context context) {
LayoutInflater LayoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
if (LayoutInflater ==null) {
throw new AssertionError("LayoutInflater not found.");
}
return LayoutInflater;
}
可以看出它其實調用 context.getSystemService()。
結論:所以這三種方式最終本質是都是調用的Context.getSystemService()。
inflate 方法 通過 sdk 的 api 文檔,可以知道該方法有以下幾種過載形式,返回值均是 View 對象,如下:
public View inflate (int resource, ViewGroup root);
3 public View inflate (XmlPullParser parser, ViewGroup root);
4 public View inflate (XmlPullParser parser, ViewGroup root, boolean attachToRoot);
5 public View inflate (int resource, ViewGroup root, boolean attachToRoot);
6
7 LayoutInflater inflater = (LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);
8 View view = inflater.inflate(R.layout.custom, (ViewGroup)findViewById(R.id.test));
9 //EditText editText = (EditText)findViewById(R.id.content);
10 // error
EditText editText = (EditText)view.findViewById(R.id.content);
對於上面代碼,指定了第二個參數 ViewGroup root,當然你也可以設置為 null 值。
注意:
·inflate方法與 findViewById 方法不同;
·inflater 是用來找 res/layout下的 xml 布局文件,並且實例化;
·findViewById() 是找具體 xml 布局文件中的具體 widget 控制項(如:Button、TextView 等)。
❷ android , 如果用代碼寫的layout,怎麼才能像XML寫的一樣注冊到R中去也能用R.layout來調用
看好了 這樣寫: LinearLayout l = new LinearLayout (this);
LayoutParams lp = new LayoutParams(LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT);
l.setLayoutParams(lp);
l.setId(111);
不能想R.layout 那樣調用
LinearLayout l = (LinearLayout)findViewById(111);
看懂了嗎。
❸ layoutsubviews什麼時候調用
layoutSubviews在以下情況下會被調用:
1、init初始化不會觸發layoutSubviews
2、addSubview會觸發layoutSubviews
3、設置view的Frame會觸發layoutSubviews,當然前提是frame的值設置前後發生了變化
4、滾動一個UIScrollView會觸發layoutSubviews
5、旋轉Screen會觸發父UIView上的layoutSubviews事件
6、改變一個UIView大小的時候也會觸發父UIView上的layoutSubviews事件
❹ 我裝了Pads 9.0 ,layout做的pcb封裝怎麼都無法從庫里調用,但是封裝設計時候是能找到!
你的封裝是Decal還是Part ?
如果是Decal,記得保存個Part. 因為Pads是先找對應的Part,然後才會去調對應的Decal.
這個結構可以這么理解: Decal @ Part
Part可以有多個Decal.
打開你的Lib,裡面有四項:Decal / Part / 2D line / Logic
其中Part就是你要查找的對象.
希望能幫你解決問題!
❺ Android編程怎麼對兩個Layout進行操作
首先 ScrollView 下的layout 有個ID吧
LinearLayout ll = (LinearLayout)findviewbyid(R.id.xx);
然後創建你要的控制項 這個控制項是什麼我不知道 最後只要
ll.addview(這個控制項);就可以了
❻ pads layout 過孔、花孔。怎麼設置和調用
1.TOOLS____OPTION____THERMALS 選項卡下可以設置花孔。Drilled thermals 選項下選擇焊盤的形狀,然後再設定對用的花孔方式。
2.Setup——Pad Stacks...下,點選Via,可以增加或者設置各種過孔,在LAYOUT里使用無模命令V+回車可以選擇你要使用的過孔類型。
❼ 怎麼實現一個layout被多個activity調用
多個Activity中setContentView中都載入這個layout就好了恩
❽ 使用tigger 調用easyui的layout-button-right按鈕方法是 $(".layout-button-right").trigger("click");
是的。你仔細看下教材好吧,不要隨便一丁點問題就問。
❾ VC#工具箱一些工具的使用
這個嘛,嘿嘿,你去msdn,那裡面有講
http://msdn2.microsoft.com/zh-cn/library/3xdhey7w(VS.80).aspx
這兒包括了控制項的可視化應用和純程序應用!