gpt4 book ai didi

Android 文本布局问题 : two textviews, 并排,具有不同的布局对齐方式和权重

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:03:47 25 4
gpt4 key购买 nike

我仍然是一个 Android 菜鸟,如果这很简单,我只是没有看到它,请原谅我。

View 中有两部分文本水平跨越整个宽度,但只有一行文本那么高。左侧必须始终完整显示,但不应占用超过其需要的水平空间。右侧应被左侧推过并填满屏幕宽度的剩余部分。如果右侧文本小于此宽度,则文本应水平右对齐。如果文本大于宽度,则应水平滚动。

右侧的文本会经常更新,当应用告诉它时(解释布局中的 TextSwitcher),应该会随着新文本向上滑动。

我尝试了两种不同的布局样式。在这两种情况下,我都可以让左侧“插入”布局,让右侧滚动,但我不知道如何让右侧右对齐。它总是左对齐。这是一张显示正在发生的事情的图片......

http://img10.imageshack.us/img10/5599/androidlayout.png

此外(但不太重要),在我的布局代码中,我在 TextView 上设置了 android:fadingEdge="none",但是当它滚动时,它的左右两侧仍然有一个褪色的边缘。这是为什么?

这是我创建的两个布局,它们产生了显示的结果,但不是我想要的结果。

使用水平 LinearLayout...

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayoutStatusBar"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="2px"
android:background="#555555"
>
<TextView
android:id="@+id/TextViewTimer"
android:textSize="18px"
android:textColor="#FFFFFF"
android:layout_gravity="left"
android:layout_weight="0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="0px"
android:layout_marginRight="3px"
android:text="Left Side"
>
</TextView>
<TextSwitcher
android:id="@+id/TextSwitcherDetails"
android:inAnimation="@anim/push_up_in"
android:outAnimation="@anim/push_up_out"
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_marginLeft="3px"
android:layout_marginRight="0px"
>
<TextView
android:id="@+id/TextViewDetails1"
android:textSize="18px"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="right"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true"
android:fadingEdge="none"
android:text="Right Side 1"
>
</TextView>
<TextView
android:id="@+id/TextViewDetails2"
android:textSize="18px"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="right"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true"
android:fadingEdge="none"
android:text="Right Side 2 - This is a really long text this is long and fun and fun and long"
>
</TextView>
</TextSwitcher>
</LinearLayout>

那么如何让右侧的文本右对齐。谢谢!


编辑:

我发现了问题……有几处不对劲。首先,我发现了 gravity 和 layout_gravity 的区别。我需要使用重力来右对齐文本。

我无法添加更多链接,所以复制并粘贴下面的链接

thinkandroid.wordpress.com/2010/01/14/how-to-position-views-properly-in-layouts/

但是,这并没有给我想要的布局,因为长行文本在滚动之前将右对齐,并且在循环之前无法阅读消息的前面部分。我需要做的是使用三个“列” View ,中间(空) View 的权重为“1”,而其他 View 为“0”,以便它尽可能将最右边的文本推到右对齐,同时仍保持左对齐。

接下来,我发现TextSwitcher 的宽度与最大的子TextView 的宽度相同。使用 setText() 从长行切换到短行时会出现问题,因为中间列不会将小文本推到边缘。解决方案是使用两个 setText()。一个是引起淡出动画,然后推一个runnable在动画后运行再次设置文本引起新行的淡入动画。

现在我唯一的问题是,当淡出动画在一长行文本上运行时,如果它在中间滚动,它会在淡入淡出之前重置到 X=0 位置,所以效果是它滚动,跳转到原始位置,然后淡出。有人知道如何解决这个问题吗?

(我删除了上面的 RelativeLayout 代码,因为那是错误的,因为这篇文章真的很长。)

这是工作布局代码...

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayoutStatusBar"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="2px"
android:background="#333333"
>
<TextView
android:id="@+id/TextViewTimer"
android:textSize="18px"
android:textColor="#FFFFFF"
android:layout_gravity="top"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0"
android:layout_marginLeft="1px"
android:layout_marginRight="4px"
android:text="Left Side"
>
</TextView>
<View
android:id="@+id/ViewSpacer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
></View>
<TextSwitcher
android:id="@+id/TextSwitcherDetails"
android:inAnimation="@anim/push_up_in"
android:outAnimation="@anim/push_up_out"
android:layout_gravity="top"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0"
android:layout_marginRight="1px"
>
<TextView
android:id="@+id/TextViewDetails1"
android:textSize="18px"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true"
android:fadingEdge="none"
>
</TextView>
<TextView
android:id="@+id/TextViewDetails2"
android:textSize="18px"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true"
android:fadingEdge="none"
>
</TextView>
</TextSwitcher>
</LinearLayout>

最佳答案

我找到问题了!有几处不对劲。首先,我发现了 gravity 和 layout_gravity 的区别。我需要使用重力来右对齐文本。

http://thinkandroid.wordpress.com/2010/01/14/how-to-position-views-properly-in-layouts/

但是,这并没有给我想要的布局,因为长行文本在滚动之前将右对齐,并且在循环之前无法阅读消息的前面部分。我需要做的是使用三个“列” View ,中间(空) View 的权重为“1”,而其他 View 为“0”,以便它尽可能将最右边的文本推到右对齐,同时仍保持左对齐。

接下来,我发现TextSwitcher 的宽度与最大的子TextView 的宽度相同。使用 setText() 从长行切换到短行时会出现问题,因为中间列不会将小文本推到边缘。解决方案是使用两个 setText()。一个是引起淡出动画,然后推一个runnable在动画后运行再次设置文本引起新行的淡入动画。

不幸的是,当文本每五到十秒切换一次时,水平滚动文本看起来很糟糕。所以我只是让它从屏幕上消失。

关于Android 文本布局问题 : two textviews, 并排,具有不同的布局对齐方式和权重,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4536222/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com