我需要一些帮助。我需要做一个类似于屏幕锁定ios 9的屏幕。以下是此屏幕的示例:
如果有布局的任何课程或想法,我会很高兴。
按钮我想通过tablelayout和圆形图像,并在其中粘贴文本,但它可能是更好的想法
答案 0 :(得分:1)
@metalink :我在android
中实现了这个Username | (no column name)
-----------------------------------
|
myName | 49
-----------------------------------
然后在此活动内的方法中
<RelativeLayout
... >
<LinearLayout
android:id="@+id/contain"
... android:layout_width="250dip"
android:orientation="horizontal"
android:weightSum="4" >
<!-- weightSum to 4 = whatever the screen, display
my children views in 4 sections -->
<View
... android:layout_weight="1"
android:background="@drawable/green_dots" />
<!-- weight to 1 = this takes one section -->
<View
... android:layout_weight="1"
android:background="@drawable/green_dots" />
<!-- weight to 1 = this takes one section -->
<View
... android:layout_weight="1"
android:background="@drawable/green_dots" />
<View
... android:layout_weight="1"
android:background="@drawable/green_dots" />
</LinearLayout>
<RelativeLayout
android:layout_below="@id/contain" ... >
... Here display your buttons (or textviews) with
custom drawable background for each one
</RelativeLayout>
答案 1 :(得分:0)
有趣的信息:德国法院刚刚宣布Apple的滑动解锁专利无效。有时候不要复制1:1的视图是个好主意,尽管这次Apple失去了专利。祝你好运;)