我有这个xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
android:orientation="vertical"
tools:context=".MainActivity$PlaceholderFragment"
android:weightSum="1"
android:padding="0.5dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="#000000"
android:layout_weight="1">
<ImageView
android:layout_width="match_parent"
android:layout_height="0dp"
android:src="@android:drawable/alert_dark_frame"
android:id="@+id/textView1"
android:gravity="center"
android:background="#FF6600"
android:layout_weight="0.20"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:text="New Text"
android:textColor="#FFFFFF"
android:id="@+id/textView2"
android:background="#B24700"
android:gravity="center"
android:layout_weight="0.30" />
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:text="--"
android:textSize="30dp"
android:id="@+id/textView3"
android:gravity="center"
android:background="#FFFFFF"
android:layout_weight="0.60" />
</LinearLayout>
我在这里包括:
如何在每个项目中注入“新文本”以使其不同。
答案 0 :(得分:0)
据我所知,这不能用<include/>
本身来完成,最接近的是在你从xml中膨胀的类中创建自己的widget类,并读取自定义属性并设置值,例如: TextView中的文本以编程方式。