- title not displaying on note_view_full bug fixed
- note_view_full title text color changed to black
This commit is contained in:
parent
db4af0dc2e
commit
b360b4a1b7
3 changed files with 38 additions and 35 deletions
|
@ -92,7 +92,6 @@ public class ExploreFragment extends Fragment {
|
|||
dateFilter.setOnClickListener(new View.OnClickListener() {
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
// Log.d(TAG, "" + v.getId());
|
||||
if (dateFilterIsVisible) {
|
||||
dateFilterIsVisible = false;
|
||||
exploreFilters.setVisibility(View.GONE);
|
||||
|
|
|
@ -472,8 +472,6 @@ public class PersonalFragment extends Fragment {
|
|||
});
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -42,16 +42,15 @@
|
|||
android:editable="true"
|
||||
android:elegantTextHeight="false"
|
||||
android:maxLines="1"
|
||||
android:textColor="#c5c4c4"
|
||||
android:hint="Title"
|
||||
android:layout_marginTop="15dp" />
|
||||
android:hint="Title"
|
||||
android:layout_marginTop="10dp" />
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:id="@+id/scrollView"
|
||||
android:layout_weight="0.5"
|
||||
android:layout_marginTop="10dp">
|
||||
android:layout_marginTop="7dp">
|
||||
|
||||
<EditText
|
||||
android:layout_width="fill_parent"
|
||||
|
@ -63,42 +62,49 @@
|
|||
android:layout_weight="0.24" />
|
||||
</ScrollView>
|
||||
|
||||
<Switch
|
||||
android:id="@+id/nvf_note_permission"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="25dp"
|
||||
android:checked="true"
|
||||
android:text="@string/nvf_public_label"
|
||||
android:layout_gravity="center_horizontal" />
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal">
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<Button
|
||||
android:id="@+id/nvf_note_submit_btn"
|
||||
<Switch
|
||||
android:id="@+id/nvf_note_permission"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/note_me"
|
||||
android:layout_margin="15dp"
|
||||
android:drawableLeft="@android:drawable/ic_menu_send"
|
||||
android:background="@color/colorPrimary"
|
||||
android:textColor="#ffffff"
|
||||
android:paddingLeft="5dp"
|
||||
android:paddingRight="5dp" />
|
||||
android:layout_marginTop="25dp"
|
||||
android:checked="true"
|
||||
android:text="@string/nvf_public_label"
|
||||
android:layout_gravity="center_horizontal" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/nvf_note_cancel_btn"
|
||||
<LinearLayout
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/throw_me"
|
||||
android:layout_marginTop="15dp"
|
||||
android:drawableLeft="@android:drawable/ic_menu_delete" />
|
||||
android:layout_gravity="center_horizontal">
|
||||
|
||||
<Button
|
||||
android:id="@+id/nvf_note_submit_btn"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/note_me"
|
||||
android:layout_margin="15dp"
|
||||
android:drawableLeft="@android:drawable/ic_menu_send"
|
||||
android:background="@color/colorPrimary"
|
||||
android:textColor="#ffffff"
|
||||
android:paddingLeft="5dp"
|
||||
android:paddingRight="5dp" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/nvf_note_cancel_btn"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/throw_me"
|
||||
android:layout_marginTop="15dp"
|
||||
android:drawableLeft="@android:drawable/ic_menu_delete" />
|
||||
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue