在一些跨系統(tǒng)的性能測試項目中,往往由于客觀因素的限制(測試硬件資源有限、多系統(tǒng)之間的協(xié)調(diào)等),我們無法搭建一個完整的測試環(huán)境來完成測試工作。此時,我們一般會搭建出被測系統(tǒng),然后采用軟件程序來模擬其他相關(guān)系統(tǒng)的功能。該軟件程序一般被稱為擋板。
創(chuàng)新互聯(lián)公司專注于網(wǎng)站建設(shè)|成都網(wǎng)站維護公司|優(yōu)化|托管以及網(wǎng)絡(luò)推廣,積累了大量的網(wǎng)站設(shè)計與制作經(jīng)驗,為許多企業(yè)提供了網(wǎng)站定制設(shè)計服務(wù),案例作品覆蓋成都發(fā)電機維修等行業(yè)。能根據(jù)企業(yè)所處的行業(yè)與銷售的產(chǎn)品,結(jié)合品牌形象的塑造,量身建設(shè)品質(zhì)網(wǎng)站。
按照你的要求編寫的JavaGUI程序如下:
import?java.awt.GridLayout;
import?java.awt.event.ActionEvent;
import?java.awt.event.ActionListener;
import?javax.swing.JButton;
import?javax.swing.JFrame;
import?javax.swing.JPanel;
import?javax.swing.JTextField;
public?class?HH?extends?JFrame?implements?ActionListener{
JPanel?jp1=new?JPanel();
JPanel?jp2=new?JPanel();
JPanel?jp3=new?JPanel();
JTextField?jtf=new?JTextField(20);
JButton?jb1=new?JButton("顯示");
JButton?jb2=new?JButton("清除");
HH(){
jb1.addActionListener(this);
jb2.addActionListener(this);
jp1.setLayout(new?GridLayout(2,1));
jp3.add(jtf);
jp2.add(jb1);jp2.add(jb2);
jp1.add(jp3);jp1.add(jp2);
getContentPane().add(jp1);
setSize(300,?120);
setLocationRelativeTo(null);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setVisible(true);
}
@Override
public?void?actionPerformed(ActionEvent?e)?{
if(e.getSource()==jb1){
jtf.setText("java程序設(shè)計");
}
if(e.getSource()==jb2){
jtf.setText("");
}
}
public?static?void?main(String[]?args)?{
new?HH();
}
}
1、比如imageView,有一個getLayout方法,獲得的layout在強轉(zhuǎn)類型到LinearLayout或者其他,然后再設(shè)定margin什么的。
2、我們平??梢灾苯釉趚ml里設(shè)置margin,如:
Xml代碼 ImageView?android:layout_margin="5dip"?android:src="@drawable/image"?/
但是有些情況下,需要在java代碼里來寫,可是View本身沒有setMargin方法,怎么辦呢?
通過查閱android api,我們發(fā)現(xiàn)android.view.ViewGroup.MarginLayoutParams有個方法
setMargins(left, top, right, bottom)。
其直接的子類有: FrameLayout.LayoutParams, LinearLayout.LayoutParams and RelativeLayout.LayoutParams。
當(dāng)前題目:java中建立擋板代碼 java創(chuàng)建面板
網(wǎng)站鏈接:http://muchs.cn/article44/ddioohe.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制開發(fā)、品牌網(wǎng)站設(shè)計、App開發(fā)、用戶體驗、網(wǎng)站導(dǎo)航、企業(yè)建站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)