我想知道是否可以在 xml 中实现以下目标:
我有这个简单的布局,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="Address: "
android:textSize="14dp" />
</LinearLayout>
当我在其他 xml 中包含此布局时,是否可以在其中添加另一个 TextView,因此结果如下所示:
地址:另一个文本视图的文本。
我想在 xml 中完成这项工作,而不是以编程方式。
我试过以下:
<include layout="@layout/mybaselayout" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:text="mylocalizedstring" />
</include>
那是行不通的,我是在尝试在 xml 中做一些不可能的事情吗?
谢谢。