1

目前我知道我可以创建一个 XML 布局并将其传递给 setContentView(...),或者我可以将自定义视图传递给 setContentView(...)。

但是如果我想结合两者的元素呢?是否可以先使用布局,然后通过 java 代码以编程方式添加到 UI?

例如:如何创建一个使用资产背景图片并在顶部添加加载小部件的视图?

附加查询:现在,我认为 View 和 Layout 作为 setContentView 显示的两件事。但是视图可以在其中包含要显示的布局吗?

4

2 回答 2

1

是的,它可以使用 setContentView() 设置 XML 布局,并以编程方式向该布局添加更多视图/小部件。这是一个简短的例子。

主要的.xml

<?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" 
    android:background="@drawable/background_image">

    <TextView 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Some text"/>

    <LinearLayout 
        android:id="@+id/custom_content_root"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
            android:orientation="vertical">

        <!-- This is where we will add views programmatically -->
    </LinearLayout>
</LinearLayout>

测试活动.java

public class TestActivity extends Activity {
private LinearLayout mRoot;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // Set the layout
    setContentView(R.layout.main);

    // Get the Linearlayout we want to add new content to..
    mRoot = (LinearLayout) findViewById(R.id.custom_content_root);

    // Create a TextView for example
    TextView moreText = new TextView(this);

    // Set the layout parameters of the new textview.
    moreText.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT,  LayoutParams.WRAP_CONTENT));

    moreText.setText("More text :)");

    // Add the new textview to our existing layout
    mRoot.addView(moreText);
}
}

结果是一个以 background_image.png 作为背景的活动,以及两个带有文本的文本视图;)

您可以通过这种方式添加任何类型的视图(TextView、EditText、ImageView、Buttons 等)。

于 2012-05-30T23:30:18.997 回答
0

是的,可以在使用 setContentView() 之后添加小部件。也可以使用LayoutInflater自己扩展 XML 布局。

您可以将加载小部件添加到在 XML 中定义的布局中,方法是使用 findViewById 获取它,然后使用ViewGroup中的方法。

于 2012-05-30T23:04:33.263 回答