Мой код для моего main.xml сейчас
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="146dip"
android:layout_height="72dip"
android:layout_gravity="center"
android:id="@+id/widgetlayout">
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button" android:id="@+id/button_two" android:layout_gravity="center_horizontal|center"></Button>
<TextView android:textAppearance="?android:attr/textAppearanceSmall" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="TextView" android:layout_gravity="center_horizontal|center" android:textColor="@color/text_color" android:id="@+id/NameOfApp"></TextView>
Как видите, он очень простой, просто кнопка и текстовое представление.Однако после того, как я нажму на кнопку и введу имя для своего приложения, я хочу, чтобы текстовое представление изменилось на имя, которое я ему дал.Я сохраняю имя в SharedPreferences после того, как пользователь нажимает кнопку сохранения настроек внутри виджета.