2013-07-19 77 views
-5

我在android的佈局文件夾中有一個xml佈局文件。 我想通過代碼引用該文件來添加一個webview。Android通過代碼進行佈局

我該怎麼做?

+0

[我試圖以編程方式插入WebView到我的代碼]的可能重複(http://stackoverflow.com/questions/13815027/im-trying-to-programmatically-insert-a-webview-into-my-code ) – Ranco

+0

你會讓你的問題更具體嗎? – srain

回答

0

你必須給一個ID,你的佈局:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" 
    id="@+id/layout" > 

</LinearLayout> 

,然後你可以得到它:

LinearLayout layout = (LinearLayout) findViewById(R.id.layout); 

,現在您可以您的WebView添加到此佈局。