chore: Rename appSettingsBar fragment to mainBar

This commit is contained in:
Peter Vacho 2025-01-02 17:32:09 +01:00
parent 8e412b3587
commit dcf6e98427
Signed by: school
GPG key ID: 8CFC3837052871B4
3 changed files with 8 additions and 8 deletions

View file

@ -11,14 +11,14 @@ import com.google.android.material.textview.MaterialTextView
import com.p_vacho.neat_calendar.R
import com.p_vacho.neat_calendar.activities.SettingsActivity
class AppSettingsBarFragment : Fragment() {
class MainBarFragment : Fragment() {
override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?
): View {
// Inflate the layout for our new app settings bar
return inflater.inflate(R.layout.fragment_app_settings_bar, container, false)
return inflater.inflate(R.layout.fragment_main_bar, container, false)
}
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {

View file

@ -9,14 +9,14 @@
<!-- Include Server Settings Bar -->
<androidx.fragment.app.FragmentContainerView
android:id="@+id/settingsBarFragment"
android:name="com.p_vacho.neat_calendar.fragments.AppSettingsBarFragment"
android:id="@+id/mainBarFragment"
android:name="com.p_vacho.neat_calendar.fragments.MainBarFragment"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
tools:layout="@layout/fragment_app_settings_bar" />
tools:layout="@layout/fragment_main_bar" />
<!-- Previous Month Button -->
<ImageButton
@ -27,7 +27,7 @@
android:background="?attr/selectableItemBackgroundBorderless"
android:src="@drawable/ic_arrow_left"
app:tint="?android:attr/textColorPrimary"
app:layout_constraintTop_toBottomOf="@id/settingsBarFragment"
app:layout_constraintTop_toBottomOf="@id/mainBarFragment"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toBottomOf="@id/tvMonthYear"
android:contentDescription="@string/previous_month" />
@ -42,7 +42,7 @@
android:text=""
tools:text="January 2024"
android:textAppearance="?attr/textAppearanceHeadline6"
app:layout_constraintTop_toBottomOf="@id/settingsBarFragment"
app:layout_constraintTop_toBottomOf="@id/mainBarFragment"
app:layout_constraintStart_toEndOf="@id/btnPreviousMonth"
app:layout_constraintEnd_toStartOf="@id/btnNextMonth" />
@ -55,7 +55,7 @@
android:background="?attr/selectableItemBackgroundBorderless"
android:src="@drawable/ic_arrow_right"
app:tint="?android:attr/textColorPrimary"
app:layout_constraintTop_toBottomOf="@id/settingsBarFragment"
app:layout_constraintTop_toBottomOf="@id/mainBarFragment"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="@id/tvMonthYear"
android:contentDescription="@string/next_month" />