- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我仍然是一个 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/
这是代码片段。 请说出这种用小内存存储大数据的算法是什么。 public static void main(String[] args) { long longValue = 21474836
所以我使用 imap 从 gmail 和 outlook 接收电子邮件。 Gmail 像这样编码 =?UTF-8?B?UmU6IM69zq3OvyDOtc68zrHOuc67IG5ldyBlbWFpb
很久以前就学会了 C 代码;想用 Scheme 尝试一些新的和不同的东西。我正在尝试制作一个接受两个参数并返回两者中较大者的过程,例如 (define (larger x y) (if (> x
Azure 恢复服务保管库有两个备份配置选项 - LRS 与 GRS 这是一个有关 Azure 恢复服务保管库的问题。 当其驻留区域发生故障时,如何处理启用异地冗余的恢复服务保管库?如果未为恢复服务启
说,我有以下实体: @Entity public class A { @Id @GeneratedValue private Long id; @Embedded private
我有下一个问题。 我有下一个标准: criteria.add(Restrictions.in("entity.otherEntity", getOtherEntitiesList())); 如果我的
如果这是任何类型的重复,我会提前申请,但我找不到任何可以解决我的具体问题的内容。 这是我的程序: import java.util.Random; public class CarnivalGame{
我目前正在使用golang创建一个聚合管道,在其中使用“$ or”运算符查询文档。 结果是一堆需要分组的未分组文档,这样我就可以进入下一阶段,找到两个数据集之间的交集。 然后将其用于在单独的集合中进行
是否可以在正则表达式中创建 OR 条件。 我正在尝试查找包含此类模式的文件名列表的匹配项 第一个案例 xxxxx-hello.file 或者案例二 xxxx-hello-unasigned.file
该程序只是在用户输入行数时创建菱形的形状,因此它有 6 个 for 循环; 3 个循环创建第一个三角形,3 个循环创建另一个三角形,通过这 2 个三角形和 6 个循环,我们得到了一个菱形,这是整个程序
我有一个像这样的查询字符串 www.google.com?Department=Education & Finance&Department=Health 我有这些 li 标签,它们的查询字符串是这样
我有一个带有静态构造函数的类,我用它来读取 app.config 值。如何使用不同的配置值对类进行单元测试。我正在考虑在不同的应用程序域中运行每个测试,这样我就可以为每个测试执行静态构造函数 - 但我
我正在寻找一个可以容纳多个键的容器,如果我为其中一个键值输入保留值(例如 0),它会被视为“或”搜索。 map, int > myContainer; myContainer.insert(make_
我正在为 Web 应用程序创建数据库,并正在寻找一些建议来对可能具有多种类型的单个实体进行建模,每种类型具有不同的属性。 作为示例,假设我想为“数据源”对象创建一个关系模型。所有数据源都会有一些共享属
(1) =>CREATE TABLE T1(id BIGSERIAL PRIMARY KEY, name TEXT); CREATE TABLE (2) =>INSERT INTO T1 (name)
我不确定在使用别名时如何解决不明确的列引用。 假设有两个表,a 和 b,它们都有一个 name 列。如果我加入这两个表并为结果添加别名,我不知道如何为这两个表引用 name 列。我已经尝试了一些变体,
我的查询是: select * from table where id IN (1,5,4,3,2) 我想要的与这个顺序完全相同,不是从1...5,而是从1,5,4,3,2。我怎样才能做到这一点? 最
我正在使用 C# 代码执行动态生成的 MySQL 查询。抛出异常: CREATE TABLE dump ("@employee_OID" VARCHAR(50)); "{"You have an er
我有日期 2016-03-30T23:59:59.000000+0000。我可以知道它的格式是什么吗?因为如果我使用 yyyy-MM-dd'T'HH:mm:ss.SSS,它会抛出异常 最佳答案 Sim
我有一个示例模式,它的 SQL Fiddle 如下: http://sqlfiddle.com/#!2/6816b/2 这个 fiddle 只是根据 where 子句中的条件查询示例数据库,如下所示:
我是一名优秀的程序员,十分优秀!