0

我将以下 xml 文档制作为自定义设计的按钮:

<?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/CBN_LinearLayout"
        style="@android:style/Widget.Button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

<FrameLayout

    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center_vertical"
    android:fadingEdge="horizontal" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="15dp"
        android:layout_height="15dp"
        android:layout_gravity="center_horizontal"
        android:layout_marginLeft="4dp"
        android:layout_marginTop="1dp"
        android:contentDescription="@string/redcirclenotify"
        android:src="@drawable/rednotify"
        android:visibility="visible" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >

            <TextView
                android:id="@+id/CBV_texview1"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_gravity="right"
                android:layout_marginRight="10dp"
                android:layout_weight="1"
                android:gravity="right"
                android:text="@string/checkorder" />

            <TextView
                android:id="@+id/CBV_textview2"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_weight="1"
                android:gravity="left"
                android:text="@string/zero"
                android:visibility="visible" />

        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >

            <TextView
                android:id="@+id/CBV_textview3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:fadingEdge="horizontal"
                android:gravity="center_horizontal"
                android:text="@string/blankstring" />

            <TextView
                android:id="@+id/CBV_textview4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:gravity="center_horizontal"
                android:text="@string/blankstring" />
        </LinearLayout>

    </LinearLayout>

</FrameLayout>

 </LinearLayout>

我想知道是否可以在 ADK 的自定义部分中使其成为可访问的视图,而无需创建自定义类。如果我必须创建一个自定义类扩展视图,有没有办法引用这个布局的细节,因为我不想在类中对其进行编程。

感谢您的任何见解!

4

2 回答 2

3

您始终可以在需要的地方引用此布局。只需将此布局包含在您需要的其他布局 xml 中,如下所示:

 <include
    android:layout_width="fill_parent"
    android:layout_x="0px"
    android:layout_y="0px"
    layout="@layout/ur custom layout" />

可以参考这个

于 2013-02-26T05:13:44.560 回答
1

您可以在 java 文件中使用通货膨胀。

final LayoutInflater lyInflater = (LayoutInflater) mContext
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
LinearLayout lLayout = (LinearLayout) lyInflater.inflate(
                R.layout.my_xml, null);

或者您可以其包含在 xml 文件中。

于 2013-02-26T05:14:20.553 回答