19 lines
656 B
XML
19 lines
656 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<Button
|
|
android:id="@+id/btn_create_shortcut"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="创建桌面快捷方式" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_update_shortcut"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="动态更新图标" />
|
|
|
|
</LinearLayout> |