Markou moment
This commit is contained in:
parent
c2e9789ee9
commit
78825de38c
@ -33,7 +33,7 @@ public class CrimeFragment extends Fragment {
|
|||||||
@Nullable
|
@Nullable
|
||||||
@Override
|
@Override
|
||||||
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
|
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
|
||||||
View v = inflater.inflate(R.layout.activity_main, container, false);
|
View v = inflater.inflate(R.layout.fragment_crime, container, false);
|
||||||
|
|
||||||
mSolvedCheckBox = (CheckBox) v.findViewById(R.id.crime_solved);
|
mSolvedCheckBox = (CheckBox) v.findViewById(R.id.crime_solved);
|
||||||
mTitleField = (EditText) v.findViewById(R.id.crime_title);
|
mTitleField = (EditText) v.findViewById(R.id.crime_title);
|
||||||
@ -64,6 +64,6 @@ public class CrimeFragment extends Fragment {
|
|||||||
mDateButton = (Button) v.findViewById(R.id.crime_date);
|
mDateButton = (Button) v.findViewById(R.id.crime_date);
|
||||||
mDateButton.setText(mCrime.getmDate().toString());
|
mDateButton.setText(mCrime.getmDate().toString());
|
||||||
mDateButton.setEnabled(false);
|
mDateButton.setEnabled(false);
|
||||||
return super.onCreateView(inflater, container, savedInstanceState);
|
return v;//super.onCreateView(inflater, container, savedInstanceState);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,38 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:id="@+id/fragment_container"
|
android:id="@+id/fragment_container"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"/>
|
||||||
android:layout_margin="16dp"
|
|
||||||
android:orientation="vertical">
|
|
||||||
<!--style="?android:listSeperatorTextViewStyle"-->
|
|
||||||
<TextView
|
|
||||||
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="@string/crime_title_label"/>
|
|
||||||
|
|
||||||
<EditText
|
|
||||||
android:id="@+id/crime_title"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:hint="@string/crime_title_hint" />
|
|
||||||
|
|
||||||
<!--style="?android:listSeperatorTextViewStyle"-->
|
|
||||||
<TextView
|
|
||||||
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="@string/crime_details_label"
|
|
||||||
/>
|
|
||||||
<Button
|
|
||||||
android:id="@+id/crime_date"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"/>
|
|
||||||
<CheckBox
|
|
||||||
android:id="@+id/crime_solved"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:text="@string/crime_solved_label"/>
|
|
||||||
|
|
||||||
</LinearLayout>
|
|
@ -0,0 +1,51 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:id="@+id/fragment_container"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:layout_margin="16dp"
|
||||||
|
android:orientation="vertical">
|
||||||
|
<!--style="?android:listSeperatorTextViewStyle"-->
|
||||||
|
<TextView
|
||||||
|
style="+?android:listSeperatorTextViewStyle"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/crime_title_label"/>
|
||||||
|
|
||||||
|
<EditText
|
||||||
|
android:id="@+id/crime_title"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:hint="@string/crime_title_hint" />
|
||||||
|
|
||||||
|
<!--style="?android:listSeperatorTextViewStyle"-->
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
style="+?android:listSeperatorTextViewStyle"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/crime_details_label"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="horizontal">
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/crime_date"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content" />
|
||||||
|
|
||||||
|
<CheckBox
|
||||||
|
android:id="@+id/crime_solved"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/crime_solved_label" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
|
</LinearLayout>
|
Loading…
Reference in New Issue
Block a user