1.非容器控件标签中放<requestFocus />标签,表示将当前控件设为焦点。
代码如下:

<LinearLayout        
xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:padding="4dip"
    android:gravity="center_horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0"
        android:paddingBottom="4dip"
        android:text="@string/alarm_service"/>
    <Button android:id="@+id/start_alarm"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/start_alarm_service">
        <requestFocus />
    </Button>

    <Button android:id="@+id/stop_alarm"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/stop_alarm_service" />
</LinearLayout>
Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐