在Android中创建自定义视图

时间:2015-01-22 10:09:10

标签: android view textview

我想创建一个新的客户视图,如下图所示: enter image description here

我多次使用它,所以我想在C#中创建一个像UserControl这样的新视图。  所以我创建了新的类扩展View类。我想以编程方式添加4个文本视图,并添加一些方法getText或setText ....

你能告诉我我怎么能这样做?如何在我的客户视图中显示那些textView?

由于

1 个答案:

答案 0 :(得分:0)

`<LinearLayout
android:layout_width="match_parent"
android:layout_height="yourheight"
android:orientation="horizontal">
<Button 
android:id="@+id/button_name"
android:weight="1"
android:layout_height="wrap_content"
android:layout_width="match_parent" />

<Button 
android:id="@+id/button_name"
android:weight="1"
android:layout_height="wrap_content"
android:layout_width="match_parent" />

<Button 
android:id="@+id/button_name"
android:weight="1"
android:layout_height="wrap_content"
android:layout_width="match_parent" />

<Button 
android:id="@+id/button_name"
android:weight="1"
android:layout_height="wrap_content"
android:layout_width="match_parent" />
</LinearLayout>`