-
.在drawable中新建一个xml文件使用shape标签 <corners android:radius="*dp" ></corners>--用于设置圆角 <gradient---设置图像的渐变 android:startColor="@color/while"---设置图像开始的颜色 android:endColor="@color/while"---设置图像结束的颜色 ></gradient> <stroke---用于设置边 android:width="1dp"---设置边的宽度 android:color="@color/black"---设置边的颜色 ></stroke> <solid android:color="@color/while" ></solid>---设置控件的填充色 在<EditText>控件中设置属性android:editable="false"---设置成不可编辑的 android:gravity="right|bottom"---设置文字靠右并且靠下 2.在控件中设置android:background="@drawable/xml文件名" 3.设置背景为黑色,并且没有标题栏: 在AndroidManifest.xml文件中,在Activity标签中添加android:theme="@android:style/Theme.Black.NoTitleBar"语句查看全部
-
设置EditText的android:inputType属性可以限制文本输入类型比如android:inputType="textPassword"为设置输入格式为密码格, android:inputType="phone"为设置输入格式为拨号键盘查看全部
-
在xml中属性是Android:textColor,而在activity中则是setTextColor的方法查看全部
-
button按钮的监听使用外部类实现点击事件 优点:可以让多个按钮通过外部类中的代码实现同一个效果,不用在每个按钮监听事件中编写重复的代码,减少代码冗余查看全部
-
RadioGroup属性: orientation="vertical"垂直排列 ="horizontal"水平排列查看全部
-
ToggleButton 的属性, 其中TextOff和TextOn两个属性分别是 checked=="false"和checked=="true"的显示文本查看全部
-
qq_try_18 //设置以逗号为分隔符为结束的符号! macTextView.setTokenizer(new MultiAutoCompleteTextView.CommaTokenizer());查看全部
-
multiAutoCompleteTextView 可支持选择多个值(在多次输入的情况下,分别用分隔符分开,并且在每个值选中的时候,再次输入值时会自动匹配,可用在发短信,发邮件时选择联系人,这种类型当中。 独特属性: Android:completionThreshold="3"查看全部
-
1.适配器的使用 ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, res); acTextView.setAdapter(adapter);查看全部
-
1.AutoCompleteTextView 独特属性:android:completionThreshold="2"表示当输入两个内容是进行匹配查看全部
-
对事件的监听,同一个类中,不能既用匿名内部类来实现,又用外部类来实现。不然会报“空指针”查看全部
-
1.实现TextView跑马灯的方法之一: ellipsize="marquee" focusable="true" focusableInTouchMode="true" 这种方法只能解决一个TextView的情况 2.自定义一个TextView的子类,实现TextView中的isFocus()方法{return true;},最后应用到布局中查看全部
-
1.findViewById()返回的是一个View的对象。查看全部
-
监听事件的方法有三种 1.匿名内部类 2.外部类(可以写一写共有的东西) 3.窗口类实现查看全部
举报
0/150
提交
取消