我已将我的观点添加到RelativeLayout
<RelativeLayout ----------------->views added to this layout
</RelativeLayout>
</ScrollView>
膨胀的xml:
<RelativeLayout 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"
tools:context=".MainActivity" >
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/iv_background"
android:src="@drawable/new_bg"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tv_title"
android:text="Hello"
/>
</RelativeLayout>
添加了如下视图:
final View view= getActivity().getLayoutInflater().inflate(R.layout.inflated, null);
iv1=(ImageView)view.findViewById(R.id.iv_background);
tvTitle=(TextView)view.findViewById(R.id.tv_title);
rl_flower.addView(view);
我想在滚动时动态更改此Textview颜色。
我的意思是
onScrollChanged()
{
-----------------------------------> I want to change my Textview color
}
我试图改变,但没有反映。我想知道在为我的布局添加视图后是否可以更改textcolor。
请建议。