1

我是 Android 开发的新手,我对自定义视图和使用 xml 进行视图自定义有疑问。

所以我的代码我有一个使用扩展视图类定义的视图,即

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    Display display = getWindowManager().getDefaultDisplay();
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,  WindowManager.LayoutParams.FLAG_FULLSCREEN);        
    draw = new DrawView(this, display.getWidth(), display.getHeight(), vibrator);
    setContentView(draw);//custom view called DrawView
}   

在 DrawView 类中,我正在使用画布执行操作。

我的问题是,

  1. 我可以将 XML 布局与我定义的这个视图结合使用吗?

  2. 我需要在这个自定义视图中添加一些按钮,在这种情况下我该如何实现。

谢谢你。

4

1 回答 1

3

您可以在布局中嵌入自定义视图。这是一个例子:

<?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="horizontal" android:background="#FFFFFF">
    <ListView android:id="@+id/channelsLogos" android:scrollbars="none"
        android:layout_height="fill_parent" android:layout_weight=".20"
        android:layout_width="100dip">
    </ListView>
    <test.poc.CustomScrollView
        android:id="@+id/scrollViewVertical" android:scrollbars="none"
        android:layout_weight=".80" android:layout_width="fill_parent"
        android:layout_height="fill_parent">
    </test.poc.CustomScrollView>

</LinearLayout>

CustomScrollView 是 test.poc 包中的自定义组件

确保在执行此操作时使用正确的构造函数。

于 2011-06-20T16:46:09.613 回答