Tag: android

Android中的默认字体特征是什么?

我知道可以在TypeFace类中find字体属性,但是我无法在Android中find写入的默认特征。 我的意思是,如果我拿一个TextView并简单地做setText("Blabla") ,我会得到什么? px中的大小? 哪种字体? 等等

如何将ArrayList <CustomeObject>从一个活动传递给另一个?

我想发送以下ArrayList从一个活动到另一个请帮助。 ContactBean m_objUserDetails = new ContactBean(); ArrayList<ContactBean> ContactLis = new ArrayList<ContactBean>(); 在添加数据之后,我将发送上面的数组列表,如下所示 Intent i = new Intent(this,DisplayContact.class); i.putExtra("Contact_list", ContactLis); startActivity(i); 但是,我正在恢复它的问题。 ArrayList<ContactBean> l1 = new ArrayList<ContactBean>(); Bundle wrapedReceivedList = getIntent().getExtras(); l1= wrapedReceivedList.getCharSequenceArrayList("Contact_list"); 在这一点上我得到这个错误: Type mismatch: cannot convert from ArrayList<CharSequence> to ArrayList<ContactBean> 我的ContactBean类实现了Serializable,也请告诉我们为什么要实现可串行化的接口。

如何获得用NDK应用程序编写的“printf”消息?

如果我在java文件中定义这样的function /** * Adds two integers, returning their sum */ public native int add( int v1, int v2 ); 所以我需要在C文件中编码 JNIEXPORT jint JNICALL Java_com_marakana_NativeLib_add (JNIEnv * env, jobject obj, jint value1, jint value2) { printf("\n this is log messge \n"); return (value1 + value2); } 那么从这个printf将打印它的消息? 在login我不明白吗? 如何通过放置日志消息来debugging任何NDK应用程序?

在Android操作栏中设置SearchView的样式

我的操作栏中有一个search小部件,如下所示: (1)如何更改“iPhone”文本的颜色? (2)此外,如果您注意到灰色X – 整个search窗口小部件在图标位置时也是该颜色。 我在Holo.Theme.Light和利用我自己的MODS。 如何在我的styles.xml文件中更改这两个窗口小部件的样式(假设这是您对search小部件进行更改的位置)?

如何获得在RecyclerView中select的位置?

我正在试验支持库的recyclerview和卡片。 我有一个卡的recyclerview。 每张卡片的右上angular都有一个“x”图标可以将其删除: 卡xml, list_item.xml : <?xml version="1.0" encoding="utf-8"?> <android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_margin="5dp"> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent"> <TextView android:id="@+id/taskDesc" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:textSize="40sp" android:text="hi"/> <ImageView android:id="@+id/xImg" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_alignParentRight="true" android:src="@drawable/ic_remove"/> </RelativeLayout> </android.support.v7.widget.CardView> 我试图用我将在notifyItemRemoved(position)中的notifyItemRemoved(position)中使用的位置来标记行: public class TaskAdapter extends RecyclerView.Adapter<TaskAdapter.TaskViewHolder> { private List<Task> taskList; private TaskAdapter thisAdapter = this; // cache of views to reduce number […]

在drawerlayout中是否可以使用除listview以外的东西作为滑动抽屉?

我想有例如一个LinearLayout或RelativeLayout从屏幕左侧而不是一个单独的ListView滑动。 我尝试使用LinearLayout与android:layout_gravity="start" ,我在运行时有这个错误: ClassCastException: android.widget.LinearLayout$LayoutParams cannot be cast to android.support.v4.widget.DrawerLayout$LayoutParams 这是布局文件: <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/drawer_layout" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@android:color/white" > <FrameLayout android:id="@+id/content_frame" android:layout_width="match_parent" android:layout_height="match_parent" /> <LinearLayout android:layout_width="320dp" android:layout_height="match_parent" android:layout_gravity="start" android:orientation="vertical"> <ImageView android:id="@+id/ivwLogo" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/video_icon" /> <ListView android:id="@+id/left_drawer" android:layout_width="320dp" android:layout_height="match_parent" android:choiceMode="singleChoice" android:divider="@android:color/transparent" android:dividerHeight="0dp" android:background="@android:color/white" /> </LinearLayout> </android.support.v4.widget.DrawerLayout> 谢谢

ImageButton边框透明度 – 如何去除圆形图像的方形边框?

我认为我的形象是透明的,但是我看到一个灰色的背景出现在我周围的图像边缘。 所以,而不是很好的透明圆ImageButton,我看到方形边缘。 我需要提供身高或抱怨,但现在我已经勾勒出轮廓的灰色/silverlight正方形的轮廓。

如何在Android上创buildUnix时间戳?

如何在Android上创buildUnix时间戳? 我想在URL的末尾创build一个带有Unix时间戳的URL发布请求。

如何在播放前在videoview中设置预览图像

我在我的活动中创build了一个VideoView ,下面是代码。 VideoView vvVideos = (VideoView) rootView.findViewById(R.id.videoView); MediaController mediacontroller = new MediaController(ctx); mediacontroller.setAnchorView(vvVideos); Uri video = Uri.parse("android.resource://" + packageName +"/"+R.raw.sample); vvVideos.setMediaController(mediacontroller); LayoutParams params=vvVideos.getLayoutParams(); params.height=150; vvVideos.setLayoutParams(params); vvVideos.setVideoURI(video); vvVideos.requestFocus(); vvVideos.setOnPreparedListener(new OnPreparedListener() { public void onPrepared(MediaPlayer mp) { vvVideos.start(); } }); 现在video开始在活动创build时播放。 我想按以下方式进行我的活动 当活动开放时,video不应播放。 它应该显示开始的video图像(目前它显示黑色) 只有当用户点击video时才应该播放。 请帮帮我。

如何从Android的DatePicker小部件获取date?

我在Android中使用DatePicker小部件来为用户设置一个date,并且想要在点击确认button时获取date值,我该怎么做?