Tag: android gui

如何在Android中的TextView内部alignment文本?

我在Android中有一个多行TextView。 它是LinearLayout的子项。 它已经被水平居中,我也想把它里面的文字居中。 这是我现在拥有的: _ _ _ _ _ _| aaaaaaaaaaaaaaaaaaaaa _ _ _ _ _ _| aaaaaaaa _ _ _ _ _ _| aaaaaaaaaaaaaa 我想要的是: _ _ _ _ _ _| aaaaaaaaaaaaaaaaaaaaa _ _ _ _ _ _| aaaaaaaa _ _ _ _ _ _| aaaaaaaaaaaaaa 哪里: _ _ _ _ = TextView侧面的空间 | […]

什么是textview文本的默认颜色?

我把颜色设置为红色,之后我想再次将颜色设置为默认颜色,但是我不知道默认颜色是什么,有没有人知道?

如何禁用查看点击事件Framelayout

在这里我有一个查看传呼机活动,有一个imageview和2个覆盖酒吧。 有覆盖酒吧我使用android xml文件布局本身。 这里我的要求是这样的 1)单击浏览器的imageview第一次=显示顶部和底部的矩形覆盖。 2)单击浏览器的imageview第二次=隐藏这些叠加。 这些都是像android的gallary视图types的function。 但是,当这些顶部和底部的布局栏显示的时候,我只想使用button,只需要在这个布局中声明哪些button被声明。 但是我没有成功实现这件事情。 问题 1)当top or bottom bar在那里,如果我可以点击next or previousbutton比它的事件后面imageview单击触摸事件,而我的酒吧是隐形的。 2)只需要声明button事件3)避免imageview点击时,我触摸覆盖栏。 简而言之,当我的顶部和底部图像栏出现的时候,顶部和底部图像栏上的图像视图没有发生图像事件。 我可以点击imageview,但不能点击时,我实际上点击下一个或上一个或分享button。 所以这些是我面临的问题,请帮助我。 源代码 : activity_pager_image.xml <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <android.support.v4.view.ViewPager android:id="@+id/pager" android:layout_width="fill_parent" android:layout_height="fill_parent" /> <RelativeLayout android:id="@+id/rl_top_overlay" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/slideshow_bar" android:visibility="gone" > <TextView android:id="@+id/tv_top_overlay" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerHorizontal="true" android:layout_centerVertical="true" android:textIsSelectable="false" /> </RelativeLayout> <RelativeLayout android:id="@+id/rl_bottom_overlay" android:layout_width="fill_parent" […]