0

我正在尝试通过 xml 来实现这一点,但尝试失败的次数太多。我尝试创建两个按钮并通过 ViewId 调用它们,但由于它们是自定义按钮,因此它们不会显示在 UI 上。我该怎么办?

 LinearLayout ll = new LinearLayout(this);
            recButton = new CustomRecordButton(this);
            ll.addView(recButton,
                new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,ViewGroup.LayoutParams.WRAP_CONTENT,0));
            playButton = new CustomPlayButton(this);
            ll.addView(playButton, new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT,0));
            setContentView(ll);
4

1 回答 1

1

这是一种可能的方法

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto
android:layout_width="fill_parent"
android:layout_height="48dp"
android:orientation="horizontal" >

<package.to.my.CustomPlayButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

<package.to.my.CustomPlayButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

</LinearLayout>
于 2013-04-23T20:15:57.857 回答