通过indeterminateDrawable属性去自己定义ProgressBar方法: <ProgressBar android:id="@+id/pb" android:layout_width="30dp" android:layout_height="30dp" android:layout ...
分类:
移动开发 时间:
2017-07-31 13:30:25
阅读次数:
214
自己写了个电话拨号器的程序给男朋友玩,用来专门打我的手机号,为了把界面做的好看一点,须要用到显示两行文本的button。在网上搜罗了两种方法,记录在以下。跟大家一起分享一下,希望能帮到须要的人。 方法一: <LinearLayout android:id="@+id/container" andro ...
分类:
移动开发 时间:
2017-07-30 11:38:00
阅读次数:
204
UI_常用组件之 Spinner(下拉列表)与适配器模式 <Spinner android:id="@+id/spinner1" android:layout_width="142dp" android:layout_height="wrap_content" android:entries="@a ...
分类:
其他好文 时间:
2017-07-22 09:50:10
阅读次数:
127
普通字符串资源: 布局资源: 案例: main.xml: <TextView android:id="@+id/textView1" android:layout_width="match_parent" android:layout_height="240dp" android:text="加油吧 ...
分类:
其他好文 时间:
2017-07-17 11:11:07
阅读次数:
181
1.XML文件布局<Button
android:id="@+id/bt1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="doClick"
android:text="XML添加doClick"
android:layout_above="@+id/bt2"
android:layout_marginBottom="47dp"
/>
<Butt..
分类:
其他好文 时间:
2017-07-11 14:42:59
阅读次数:
234
1.android的API提供了访问网络的一个类HttpURLConnection2.通过发送GET请求获取服务器返回的html代码3.先看看布局文件,如下所示,<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/a..
分类:
移动开发 时间:
2017-06-30 22:28:58
阅读次数:
236
一、 android:id="@android:id/tabhost" 是调用系统内部的ID 和代码中 mTabContent = (FrameLayout) findViewById(com.android.internal.R.id.tabcontent); 是一回事。 二、 android:i ...
分类:
移动开发 时间:
2017-06-17 20:36:00
阅读次数:
170
1,mobile_signal_group.xml ..... <FrameLayout android:id="@+id/mobile_combo" android:layout_width="wrap_content" android:layout_height="wrap_content" > ...
分类:
移动开发 时间:
2017-06-17 16:05:58
阅读次数:
301
这是xml文件的代码。 <TextView android:id="@+id/main_tv" android:textSize="25sp" android:layout_width="wrap_content" android:layout_height="wrap_content" andro ...
分类:
其他好文 时间:
2017-06-14 11:38:04
阅读次数:
220
这是一个3行的EditText, 光标默认第一行, 进入activity之后不显示键盘 edittext失去焦点 <EditText android:id="@+id/reform_result" android:layout_width="0dp" android:layout_weight="1 ...
分类:
其他好文 时间:
2017-06-10 22:28:39
阅读次数:
277