如何在android中创建GUI

时间:2013-11-07 09:46:16

标签: android android-layout

您好我想在Android中获取以下屏幕请帮助我如何获得下面的屏幕。 enter image description here

1 个答案:

答案 0 :(得分:1)

GUI中的其他内容请显示完整的GUI图片或您尝试过的代码您可以使用textView添加ImageButton或Button两者都可以将背景设置为GUI使用布局中的android:background="@drawable/ur_background_name"如果你不了解布局...... 然后阅读This但是在这里你可以使用垂直方向的线性布局,然后使用TextView然后使用Button或ImageButton并添加背景,请确保它只是一个按钮而不是微调器,Spinner基本上是单击它时的下拉列表,您还可以使用该按钮的样式,在可绘制文件夹中创建形状XML文件 并编写下面的代码

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
  android:shape="rectangle">
  <gradient android:startColor="#545253" 
    android:endColor="#000000"
    android:angle="270" />
  <corners android:radius="15dp" />
  <stroke android:width="2px" android:color="#eecc68" />
</shape>