我正在尝试将一些文本视图垂直左对齐,但它不能正常工作,其他人可以指出我下面的代码有什么问题吗?
<RelativeLayout
android:id="@+id/footer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity = "left"
android:paddingTop="@dimen/top_spacing"
android:paddingBottom="@dimen/bottom_spacing"
android:orientation="vertical"
>
<TextView
android:id="@+id/Text1"
style="@style/style1"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:layout_alignParentLeft="true"
/>
<TextView
android:id="@+id/Text2"
style="@style/style1"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:layout_alignParentLeft="true"
/>
<TextView
android:id="@+id/Text3"
style="@style/style1"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:layout_alignParentLeft="true"
/>
</RelativeLayout>